I have this select command
SELECT intUserId FROM tblUser
I want to insert every intUserId into tblUserBla,tblUserBla2
I know that i can do this
INSERT INTO tblUserBla (intUserId) SELECT intUserId FROM TblUser
But, how can i perform a insert into tow tables, in one statement

Insert into more than one table
Jenkins
areisinger
insert into [2nd table] select intUserId from inserted
which will insert only the newly inserted IDs
ISH_STEPHAN
Thad