Tagged Questions
0
votes
2answers
219 views
Save data to variable and use it in stored procedure
I have a table of 2 columns (Date, Text). I am getting data from the Text column according to the Date using a query like this:
SELECT Text
FROM MyTable
WHERE Date>= @userDate;
This works, ...