(Print) Use this randomly generated list as your call list when playing the game. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
B-Select * from game where prijs >40 and systeem = “Nintendo”
I-Update game set prijs = prijs * 1.25 where id = 8
G-Select * from game where prijs <40 and systeem = “Nintendo DS”
I-Update game set prijs = 35 where prijs >34 and prijs< 35
B-Insert into game (titel, prijs, systeem) values (“call of duty”, 65.45, “playstation”)
B-Insert into game (titel, prijs, systeem) values (“go do it”, 10, “Playstation”
G-2
G-Select * from game where systeem like “o%”
N-Select * from game where titel like “%o%”
B-Update game set systeem = “Nintendo DS” where systeem = “Nintendo”
I-Update game set titel =”mario deluxe” where game = “mario”
B-Insert into game (titel, prijs, systeem) values (“prince of persia”, 55, “nintendo”)
N-Update game set prijs = 65 where titel = “Call of Duty”
N-Update game set prijs = prijs + 5 where systeem = “playstation”