how to like query combine in sql server
how to like query combine in sql server
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted Oct 11, 2013, 1:43 AM
syntax is
SELECT column_name(s)
FROM table_name
WHERE column_name LIKE pattern;
Example
SELECT * FROM Customers
WHERE City LIKE 's%';
visit the bellow link will help your
please mark as answer, if helps you