Is it possible to insert sql with several tables?
insert into 'tablename1', 'tablename2' (coluMn1, column2) values (column1value, column2value)
if not do ihave to have several sqlstring, command?
actually there is a way but you would have to create a partitioned view, you need check constraints on the table and you also need to make sure that the tables have identical DDL
then you would insert into the view and the view would insert into the correct table (so to speak)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.