I want to select all rows where the column value starts with "X7", followed by at least one digit between 1 and 9, then followed by zero or more digits (0-9), i.e., something like X7[1-9][0-9]*. Can I use regular expression like syntax in the WHERE clause for PostgreSQL?