REGEX is not available in SQL and Cannot have access to Visual Studio .
There is one output here shorturl.at/ovACN but its for MYSQL.
What I need is for SQL.
REGEX is not working with SQL.
When we are trying to do
REGEXP '^[a-zA-Z][0-9][0-9][0-9][0-9][0-9][0-9]'
in SQL its giving non boolean expression error.
How can I get only these patterns (R123456,m123456,y729472) and not like these (R12AS56,mS23456,y7294D2)
Like operator is not working and not getting what exactly I should use to get this output (R123456,m123456,y729472)
MYSQL
where COlumn name REGEXP '^[a-zA-Z][0-9][0-9][0-9][0-9][0-9][0-9]';
ORACLE:
where REGEXP (COlumn nane,'^[a-zA-Z][0-9][0-9][0-9][0-9][0-9][0-9]');
Output = R123456,m123456,y729472
Actual error msg with REGEXP function