Last active
August 29, 2015 14:08
-
-
Save loonison123/966a1db02c6f36cb8543 to your computer and use it in GitHub Desktop.
Insert Into with select
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| insert into [dbo].[Customer] (FirstName, LastName, DateCreated) | |
| select | |
| f_name, | |
| l_name, | |
| getdate() | |
| from [dbo].[Cust] | |
| -- No Where Statement, Careful! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment