Page 1 of 1

15. Someone is trying to build a store-front to sell sci-fi devices, and they use the following SQL statements to start

Posted: Fri Jul 01, 2022 5:38 am
by answerhappygod
15 Someone Is Trying To Build A Store Front To Sell Sci Fi Devices And They Use The Following Sql Statements To Start 1
15 Someone Is Trying To Build A Store Front To Sell Sci Fi Devices And They Use The Following Sql Statements To Start 1 (72.34 KiB) Viewed 50 times
15. Someone is trying to build a store-front to sell sci-fi devices, and they use the following SQL statements to start building their database. If both of these SQL statements are run, what will be the result? CREATE TABLE products ( id INT PRIMARY KEY, description VARCHAR(256) NOT NULL ); INSERT INTO products(id, description) VALUES (1, "Flux capacitor"), (2, "Tachyon inverter"), (3, "Interocitor"), (4, "DeLorean"); (3 Points) O The first statement will produce an error. The second statement will produce an error. Both statements will work, but the result won't be what was intended. Both statements will work, and the results will be correct.