The questions can come in any order, so make sure you are selecting right option for all questions.
1. Write a query to create 'building' table.create table building( id integer not null, owner_name varchar(100) not null, address varchar(100) not null, building_type_id integer not null, contact_number varchar(100) not null, email_address varchar(100) )
alter table building rename column email_address to email;
alter table building add description varchar(255) NOT NULL;
alter table building drop column address;
alter table building modify owner_name varchar(500);
drop table building;