programming-examples/sql/WildcardSpecialOperators/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'.sql
2019-11-18 14:05:53 +01:00

5 lines
235 B
SQL

/*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%';