I\'ve got a table that collects forms submitted from our website, but for some reason, when they created the table, they didn\'t put a timestamp in the table. I want it to e
This also works:
CREATE TABLE Example( ... created datetime default GETDATE() );
Or:
ALTER TABLE EXAMPLE ADD created datetime default GETDATE();