Computer Science, asked by shh2519404seema, 2 months ago

write ab sql query to display all information og students from student table whose name start with s​

Answers

Answered by lionakhilesh
0

Answer:

select student

from students

where student_name LIKE 'S%'

Explanation:

S%   - means starting with S

Similar questions