Practical 91 98
Practical 91 98
10) Display the details of student who are in ‘COPA’,’CSP’ and ‘WM’.
➢ select * from student where trade in ('COPA','CSP','WM');
11) Display the name of student whose name is beginning with ‘R’;
➢ select * from student where name like 'R%';
12) Display the name of students whose name is ending with ‘A’.
➢ select * from student where name like '%A';
16) Display Name, Cast and Fees of student whose cast is ST or GN.
➢ Select Name,Cast,Fees from student where Cast=’ST’ or Cast=’GN’;