News

🔍 Queries 1️⃣ Find driver details who are driving Truck SELECT D.* FROM Driver_Detail D JOIN Vehicle_Detail V ON D.vehicle_no = V.Vehicle_id WHERE LOWER(V.Vehicle_name) = 'truck'; 🔧 LOWER() makes ...