Question Insert one database table record to another database table in sql server 2000

prasad kulkarni

Well-known member
Joined
Sep 7, 2009
Messages
62
Programming Experience
1-3
HI,

how to insert one database table record to another database table
in sql server 2000

if any know , then reply me soon
 
If destination not exists:
SELECT fields INTO destination FROM source

If exists:
INSERT INTO destination SELECT fields FROM source
 
Back
Top