Dovberman
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,
This obviously does not work
SELECT * FROM SymbolTable WHERE 'b' IN SymbolName
Thanks,
SELECT * FROM SymbolTable WHERE SymbolName = 'b'
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.