Column DataType
------ --------
COL_A varchar(254) NULL
Need SQL to check for last characters of COL_A = 'ING' For example, in this list:
COL_A
-----
Housing
Housing Availability
Zoning
Taxing Liability
I'd want the following rows returned:
Housing
Zoning
Any suggestions for a T-SQL statement to do this?
thx in advance
BT