MySQL how to declare a datetime variable?
Answers
Answered by
0
set @dateTo :=cast('2016-09-30' as date);
SELECT
id, last_updated
FROM
(SELECT * FROM transactions_history WHERE id = 81867533) h
Similar questions