0 votes
in Sql by
How to write a query to show the details of a student from Students table whose

name start with K?

1 Answer

0 votes
by

Query:

SELECT * FROM Student WHERE Student_Name like ‘K%’;

Here ‘like’ operator is used to perform pattern matching.

Related questions

0 votes
asked Jul 10, 2020 in Sql by SakshiSharma
0 votes
0 votes
asked Nov 8, 2021 in Sql by rajeshsharma
...