BlurredVision
Technical User
Hello all,
Trying to create my first stored procedure and I am seeking a little help.
I need to combined two tables and thought a union would be best.
SELECT id, thru_date FROM Hospitals UNION SELECT id, FromDate FROM History;
My issue is, the thur_date is a string and the Fromdate is a datetime, how can I convert teh Fromdate to a string?
Thank you
Trying to create my first stored procedure and I am seeking a little help.
I need to combined two tables and thought a union would be best.
SELECT id, thru_date FROM Hospitals UNION SELECT id, FromDate FROM History;
My issue is, the thur_date is a string and the Fromdate is a datetime, how can I convert teh Fromdate to a string?
Thank you