Program:
select * from students where name='Atharva' and age='18';
select * from students where name='Atharva' or age='20';
select * from students where name LIKE 'A%'
select * from students where age BETWEEN 18 and 20;
select concat(name,number) from students;
Output: