Assuming the columns you are referencing are DATETIME columns, I would use the following code:
Date only
SELECT CONVERT(VARCHAR(10), GETDATE(), 101)
Only time
SELECT LTRIM(RIGHT(CONVERT(VARCHAR(20), GETDATE(), 100), 7))
You can see the requests in action / play with them here .
source share