2%
This commit is contained in:
13
test_data.sql
Normal file
13
test_data.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
USE smart_bins;
|
||||
|
||||
|
||||
INSERT INTO bins (bin_label, latitude, longitude, empty_weight_kg, max_capacity_liters) VALUES
|
||||
('Poubelle_Rue_Principale', 48.8584, 2.2945, 12.00, 100),
|
||||
('Poubelle_Parc_Nord', 48.8600, 2.3000, 10.50, 80),
|
||||
('Poubelle_Centre_Commercial', 48.8500, 2.3100, 15.00, 120);
|
||||
|
||||
|
||||
INSERT INTO measurements (bin_id, total_weight_kg, fill_level_percent, temperature, battery_level) VALUES
|
||||
(1, 45.50, 85, 22.1, 95),
|
||||
(2, 15.00, 20, 19.5, 88),
|
||||
(3, 60.00, 50, 24.0, 100);
|
||||
Reference in New Issue
Block a user