5 lines
235 B
MySQL
5 lines
235 B
MySQL
|
/*Write a SQL statement to find those salesmen with all information whose name containing the 1st character is
|
||
|
'N' and the 4th character is 'l' and rests may be any character.*/
|
||
|
SELECT *
|
||
|
FROM salesman
|
||
|
WHERE name LIKE 'N__l%';
|