Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Kuris iš šių sakinių teisingai panaudoja MULTI-TABLE INSERT, kad įterptų duomenis į kelias lenteles?
MULTI-TABLE INSERT
INSERT FIRST INTO table1 SELECT * FROM table2;
INSERT INTO table1 VALUES ('A') INTO table2 VALUES ('B') SELECT * FROM dual;
INSERT INTO table1, table2 VALUES ('A', 'B');
INSERT ALL INTO table1 VALUES ('A') INTO table2 VALUES ('B') SELECT * FROM dual;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!