I have a function that imports tables and appends them.I want this function to be executed only when a field is true, in my case the field Orders.Check in the following sql :
SELECT Orders1.orderid, Orders1.Check
FROM Orders1;
The function is called TSave.How should i call the function only when the field Check is True ?
SELECT Orders1.orderid, Orders1.Check
FROM Orders1;
The function is called TSave.How should i call the function only when the field Check is True ?