Jul 13, 2007 #1 Michael57 Technical User Nov 15, 2005 131 CA I want to create a table with an sql script that will take only some values from another table. How can I do this.
I want to create a table with an sql script that will take only some values from another table. How can I do this.
Jul 13, 2007 1 #2 gmmastros Programmer Feb 15, 2005 14,901 US create a table Select into only some values from another table. Use a where clause Ex: Code: Select * Into NewTable From ExistingTable Where SomeValue = 400 -George "the screen with the little boxes in the window." - Moron Upvote 0 Downvote
create a table Select into only some values from another table. Use a where clause Ex: Code: Select * Into NewTable From ExistingTable Where SomeValue = 400 -George "the screen with the little boxes in the window." - Moron