Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What if you have a set of 3 context variables:
- dayOne set to true for 1rst time, false for other cases
- SQLDayOne SQL quesry for day 1
- SQLDayN SQL query for day n
Then you can decide which SQL query to use based on dayOne value:
context.dayOne ? context.SQLDayOne : context.DayN
Is that this kind of things you're searching for?