Answers for "How to convert DateTime to VarChar SQL"

SQL
1

How to convert DateTime to VarChar SQL

-- Create test case
DECLARE @myDateTime DATETIME
SET @myDateTime = '2008-05-03'
-- Convert string
SELECT LEFT(CONVERT(VARCHAR, @myDateTime, 120), 10)
Posted by: Guest on July-28-2021

Code answers related to "How to convert DateTime to VarChar SQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language