In Oracle I have an insert statement where Im selecting from one table and isnerting into another. One of the columns Im inserting is the current date/time
Ex.
Insert Into NEW_TABLE
Select DISTINCT REGION_ID,' SBA','Standard Rule','Upgrade',SYSDATE,'1'
from REGION;
In SQL Server 2005 I cannot seem to find the right fit for the SYSDATE command: Please help
Insert Into NEW_TABLE
Select DISTINCT REGION_ID,' SBA','Standard Rule','Upgrade',?,'1'
from REGION;
use GETDATE()If you can use the same datetime for every row I would do this because it is much faster:
DECLARE @.curdate DATETIME
SET @.curdate = GETDATE()
Select DISTINCT REGION_ID,' SBA','Standard Rule','Upgrade',@.curdate,'1'
from REGION;
|||AND not subject ot time variations.|||
Great!!! Exactly what I was looking for
Thanks
No comments:
Post a Comment