In sql server I have to create a new column in a preexisting table where I add another column that I have with seconds to the new one from a date:
alter table Emails add Date smalldatetime ALTER TABLE Emails ALTER COLUMN Date DATEADD('SECOND',Time,'11-05-2015 14:00:00')
But the error comes to me in:
SECOND, incorrect syntax expecting ID, NUMERIC, etc.
Can you help me! I've been with this for hours