Hi I am trying to insert the following to SQL Server 2005:
INSERT INTO tb_UserLoginTimes (UserID, LoginDateTime)
VALUES (1235,2010/07/06 10:38:44)
But am getting the following error.
Incorrect syntax near '10'.
Do I need to escape the colon?
If so how do I do that?
Real noob at this so my apologies.