举例来说,如果这种询问回到一张称为“发票”的表格:
select table_name from Table1 where table_ID = 2
我怎么能够把这种问话放在更大的一面?
因此,不是:
insert into invoice values (1,1,1)
I want to write :
insert into (select table_name from Table1 where table_ID = 2) values (1,1,1)
but this gives an error, can anyone tell me the right syntax thanks in advance