Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-05-13 : 09:59:06
|
| Ramesh Kumar writes "Hi,I want to retrieve records in SQL SERVER from a select clause with a condition and populate in to a new table...i.e the retrieved records should be created to be a separate table..Thanks,Ramesh" |
|
|
Nazim
A custom title
1408 Posts |
Posted - 2002-05-13 : 10:05:25
|
| select column1,column2 into newtable from tablename where column1 between 100 and 200 .-------------------------------------------------------------- |
 |
|
|
|
|
|