4 lines
141 B
MySQL
4 lines
141 B
MySQL
|
-- Inserts here
|
||
|
INSERT INTO Customers (CustomerID, Name, Address) VALUES
|
||
|
(1, 'John Doe', '123 Main St'),
|
||
|
(2, 'Jane Smith', '456 Elm St');
|