0
what is the condition for..
suppose i have a table student. that includes name, marks, dob. i want to choose 2nd & 3rd rank in it
1 Answer
0
use where clause
for example
select name, mark, dob from students where rank=2 OR rank=3
suppose i have a table student. that includes name, marks, dob. i want to choose 2nd & 3rd rank in it