Advertisement
-Annie-

04.InsertIntoTable

Sep 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.21 KB | None | 0 0
  1. INSERT INTO Towns (Id, Name) VALUES
  2.   (1, 'Sofia'),
  3.   (2, 'Plovdiv'),
  4.   (3, 'Varna')
  5.    
  6. INSERT INTO Minions (Id, Name, Age, TownId) VALUES
  7.   (1, 'Kevin', 22, 1),
  8.   (2, 'Bob', 15, 3),
  9.   (3, 'Steward', NULL, 2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement