I have a field where the date and time is saved:
'2013-06-13 00:00:01' and '2013-06-13 11:59:59'
I want to make an appointment by passing the date and a fixed time:
CONVERT(VARCHAR(10), CAST(getdate() AS DATETIME), 111) + '00:00:01' and
CONVERT(VARCHAR(10), CAST(getdate() AS DATETIME), 111) + '11:59:59'
How could I concatenate this information? I thank you