How to select rows from table using Name field in sql
Database
3
Posts
3
Posters
0
Views
1
Watching
-
for example Abul Azar Mohamed Sheik vazith i want to select names from azar to last record of the table
-
for example Abul Azar Mohamed Sheik vazith i want to select names from azar to last record of the table
-
for example Abul Azar Mohamed Sheik vazith i want to select names from azar to last record of the table
SELECT *
FROM Table
WHERE Name >= 'Azar'For this query to be efficient, the table should be indexed on the name column
Wrong is evil and must be defeated. - Jeff Ello[^]