Which SQL statement creates a new table called 'Customers' with columns 'id' (integer) and 'name' (string with a maximum length of 255 characters)?
SELECT * FROM Customers
INSERT INTO Customers (id, name) VALUES (1, 'John Doe')
Baroque art features strong contrasts, while Rococo art prefers more subtle transitions
Baroque art is generally larger in scale than Rococo art

Computer Science and Technology Exercises are loading ...