Fluid Shell run select statement on specific day

by Nov 4, 2016

Hello. Is there a way I can have fluidshell execute a query only if the current day is monday?

Example

Case when Sel TD_Day_Of_Week(date) = 2 then

(Select Statement 1)

else

(Select Statement 2)

(Select Statement 3)

end

Thanks

Gregg

Response

Niels Gron over 6 years ago
In FluidShell you can’t add a condition statement. But, if you are executing a FluidScript from the command line, you can add the conditions in the OS shell to execute different scripts.

Gregg Blachstein over 6 years ago
Thanks you NeilsGron. Appreciate the work around.

Gregg