Collections:
Using Wildcard Characters in LIKE Operations in SQL Server
How To Use Wildcard Characters in LIKE Operations in SQL Server Transact-SQL?
✍: FYIcenter.com
Wildcard character '%' can be used in the pattern string for the LIKE operator to match any string of zero or more characters. The following example uses '%Sport% Store' to search all company names that has a partial word 'Sport' and ended with the word 'Store'. The sample database AdventureWorksLT provided by Microsoft is used.
USE adventureWorksLT GO SELECT c.CompanyName FROM SalesLT.Customer c WHERE c.CompanyName LIKE '%Sport% Store' GO CompanyName ------------------------- Specialty Sports Store Camping and Sports Store Vigorous Sports Store Our Sporting Goods Store Sports Store Sports Products Store
⇒ EXISTS - Testing Subquery Results in SQL Server
⇐ LIKE - Matching a Pattern in a Character String in SQL Server
⇑ Boolean Values and Logical Operations in SQL Server Transact-SQL
2017-01-21, 3238🔥, 0💬
Popular Posts:
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...
Where to find answers to frequently asked questions on PHP Connections and Query Execution for MySQL...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...