edkir98 Beginner

Joined: 27 Aug 2007 Posts: 102 Topics: 42 Location: Chennai
|
Posted: Mon Sep 22, 2008 2:15 am Post subject: Insert Into... Select |
|
|
Is it possible to use INSERT INTO statement with SELECT for only some rows..like.. I want to insert only the first 100 rows from the select statement..
for ex. a statement like this
Code: | INSERT INTO <table name>
SELECT field1,
field2,
field3
FROM table1
INSERT FIRST 100 ROWS ONLY |
_________________ Thanks |
|