Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Basic SELECT statement: Check whether the column first_name of the employees contain numbers

MySQL Basic Select Statement: Exercise-17 with Solution

Write a query to check if the first_name fields of the employees table contains numbers.

Sample table: employees


Code:

SELECT * 
   FROM employees 
   WHERE  first_name REGEXP  '[0-9]';

MySQL Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to get the length of the employee names (first_name, last_name) from employees table.
Next: Write a query to select first 10 records from a table.

What is the difficulty level of this exercise?