I recently ran across this:
SELECT { t '07:32:00' }
The return is 2017-05-22 07:32:00.000
(I'm using Sql-Server-2008)
If I don't include a proper time between the brackets, I get an error below:
Conversion failed when converting date and/or time from character string.
My question is; is this a "shortcut" for getdate()
or some other similar function?
And, how can/should it be used?