|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Select and InsertHow do I select records and insert those selected records into another table
with store procedure ? Any idea ? Thanks. INSERT INTO <targettable>
(<olumnlist>) SELECT <olumnlist> FROM SourceTable Show quote "quest" <anonym***@microsoft.com> wrote in message news:uF4GrK0jFHA.3148@TK2MSFTNGP09.phx.gbl... > How do I select records and insert those selected records into another > table > with store procedure ? Any idea ? Thanks. > > > Encapsulate using INSERT INTO SELECT Option ...
-- Show quoteHTH, Vinod Kumar MCSE, DBA, MCAD, MCSD http://www.extremeexperts.com Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp "quest" <anonym***@microsoft.com> wrote in message news:uF4GrK0jFHA.3148@TK2MSFTNGP09.phx.gbl... > How do I select records and insert those selected records into another > table > with store procedure ? Any idea ? Thanks. > > > |
|||||||||||||||||||||||