Files
SmartTrash2026/test_data.sql
2026-04-16 21:08:42 +02:00

13 lines
487 B
SQL

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);