/*Exercise No:22 create bank transaction File*/ --create database with name bank and use it with its name create database bank ; use bank ; --create table with the following fields create table bank_table ( ac_number int ( 15 ), c_name varchar ( 20 ), ac_type char ( 2 ), balance int ( 15 ), dot date , t_amount int ( 15 ), t_type char ( 1 )); --inserting all the records ito the table bank_table insert into bank_table ( ac_number , c_name , ac_type , balance , dot , t_amount , t_type ) values ( 123456 , 'swati' , 'sb' , 9000 , '2022-12-19' , 100 , 'W' ); insert into bank_table ( ac_number , c_name , ac_type , balance , dot , t_amount , t_type ) values ( 123457 , 'chran' , 'sb' , 9000 , '2022-11-19' , 500 , 'D' ); insert into bank_table ( ac_number , c_name , ac_type , balance , dot , t_amount , t_type ) values ( 123459 , 'raju' , 'ca' , 5000 , '2022-09-19' ...