Microsoft
Software
Hardware
Network
Question : SQL Insert
I have a sql INSERT statement where I just copy another row of data. The problem is, I do not want to copy the datetimereceived field. I want it to insert the current date and time and then copy the other fields. Does anyone know how to do that, using the GetDate() feature? This is my current stored procedure:
Begin
INSERT INTO Orders (DateTimeReceived, FirstName, LastName) SELECT DateTimeReceived, FirstName, LastName FROM Orders WHERE Variable = @Variable
End
Answer : SQL Insert
Begin
INSERT INTO Orders (DateTimeReceived, FirstName, LastName) SELECT GETDATE(), FirstName, LastName FROM Orders WHERE Variable = @Variable
End
Random Solutions
BASH - Shell Script - Help with simple menu script to CAT txt file and return values into variables and menu options.
MS Access - Using Automatic Resizable (Adjusting) Forms
Flash Actionscript Print Function
Cannot log in to CompanyWeb or Sharepoint Central Administration
Which RPM does libhistory.so.5 reside in
problem in IE passing cfform/cfselect over an ajax request
PXE Booting to Ghost with Multiple NIC Drivers
Can you install Exchange 2007 System manage on a Domain Controller
Folder redirection permission question
Top 5 query in SQL 7.0