Sep 25, 2001 #1 TomBarrand Programmer Joined Aug 9, 2000 Messages 162 Location GB What is the syntax that I need to put in the Formula property of a datetime data type so that the dates are stored in the format dd/mm/yyyy? Thanks,
What is the syntax that I need to put in the Formula property of a datetime data type so that the dates are stored in the format dd/mm/yyyy? Thanks,
Sep 25, 2001 #2 RickCole Technical User Joined May 9, 2001 Messages 349 Location GB In SQL Server dates are not held in diffrent formats. If you want the date returned in dd/mm/yyyy format use the following conversion function: select convert(varchar(10),Col_1,103) Where Col_1 is the column name on the table where the date is held. Rick. Upvote 0 Downvote
In SQL Server dates are not held in diffrent formats. If you want the date returned in dd/mm/yyyy format use the following conversion function: select convert(varchar(10),Col_1,103) Where Col_1 is the column name on the table where the date is held. Rick.