How to find pattern like this in sql server in a table.
I've table with rows like this.
ST CLAIR, TERESA
JR VISH, DALVI
JACK RIDER
JR JK, SMITH
I want to find the rows which follows this pattern ST CLAIR, TERESA
so it will return 3 rows like below.
ST CLAIR, TERESA
JR VISH, DALVI
JR JK, SMITH
Query
select * from table
where column like ?