You are on page 1of 1

1) select salary from customer where age<=27 and salary<=33000;

2) update customer set salary=2*salary where address="delhi";


3) select name from customer where name like "_u%";
4) select age from customer where name like "%h";
5) select * from customer where age in(25,29,27);
6) select * from customer where salary between 30000 and 36000;
7) select name from customer where address="delhi" or address="chennai";

You might also like