-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLQuery99.sql
21 lines (18 loc) · 1.12 KB
/
SQLQuery99.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
insert into Person (age, health) values (24, 2)
insert into Person (age, health) values (42, 5)
insert into Person (age, health) values (87, 4)
insert into Person (age, health) values (76, 1)
insert into Person (age, health) values (98, 2)
insert into Person (age, health) values (23, 5)
insert into Car ([type], motor_volume, car_price) values ('car', 1600, 56000)
insert into Car ([type], motor_volume, car_price) values ('car', 1900, 69000)
insert into Car ([type], motor_volume, car_price) values ('bus', 5600, 560000)
insert into Car ([type], motor_volume, car_price) values ('truck', 4600, 122000)
insert into Car ([type], motor_volume, car_price) values ('motorcycle', 600, 13000)
insert into Car ([type], motor_volume, car_price) values ('bus', 7600, 748000)
insert into House (area, house_price) values (98, 116000)
insert into House (area, house_price) values (200, 999000)
insert into House (area, house_price) values (50, 46000)
insert into House (area, house_price) values (76, 110500)
insert into House (area, house_price) values (500, 9999990)
insert into House (area, house_price) values (150, 502070)