The questions can come in any order, so make sure you are selecting right option for all questions.
1. Write a query to insert any 3 records into the 'building' table.insert into building values (1, 'Mohit', 'UP', 1, 0000000000, 'null'); insert into building values (2, 'Abhi', 'Bihar', 2, 0000000000, 'null'); insert into building values (3, 'Ashish', 'Delhi', 2, 0000000000, 'null');
delete from building where email_address = 'vivosupport@vivocity.com.sg';
update building set owner_name = 'Alexander' where owner_name='Niccholas';
update building_type set name='Hospital' where name='Pharmacy';
delete from meter where meter_number = 'SG288942';
delete from building where owner_name = 'Ron Sim';