Link to home
Create AccountLog in
Avatar of Dovberman
DovbermanFlag for United States of America

asked on

I need to select all rows where a specific character is in the column. SQL Server 2005

I need to select all rows where a specific character is in the column.

This obviously does not work
SELECT * FROM SymbolTable  WHERE 'b' IN SymbolName

Thanks,
Avatar of mbizup
mbizup
Flag of Kazakhstan image

SELECT * FROM SymbolTable  WHERE SymbolName = 'b'
SOLUTION
Avatar of Patrick Matthews
Patrick Matthews
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
ASKER CERTIFIED SOLUTION
Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.