SQL LIKE - W3Schools
Có thể bạn quan tâm
LIKE
The LIKE command is used in a WHERE clause to search for a specified pattern in a column.
You can use two wildcards with LIKE:
- % - Represents zero, one, or multiple characters
- _ - Represents a single character (MS Access uses a question mark (?) instead)
The following SQL selects all customers with a CustomerName starting with "a":
Example
SELECT * FROM Customers WHERE CustomerName LIKE 'a%'; Try it Yourself »The following SQL selects all customers with a CustomerName ending with "a":
Example
SELECT * FROM Customers WHERE CustomerName LIKE '%a'; Try it Yourself »The following SQL selects all customers with a CustomerName that have "or" in any position:
Example
SELECT * FROM Customers WHERE CustomerName LIKE '%or%'; Try it Yourself »The following SQL statement selects all customers with a CustomerName that starts with "a" and are at least 3 characters in length:
Example
SELECT * FROM Customers WHERE CustomerName LIKE 'a__%'; Try it Yourself » ❮ Previous ❮ SQL Keywords Reference Next ❯ ★ +1 W3schools Pathfinder Track your progress - it's free! Log in Sign UpTừ khóa » Câu Lệnh Search Like Trong Sql
-
Cú Pháp Cơ Bản Của Lệnh LIKE Như Sau: SELECT Cot1, Cot2,.... Cotn FROM Ten_bang WHERE Ten_cot LIKE [mẫu So Sánh]; ... Cú Pháp Lệnh LIKE Trong SQL.
-
Điều Kiện LIKE Trong SQL Server
-
Mệnh đề LIKE Trong SQL - Học Sql Cơ Bản đến Nâng Cao - VietTuts
-
Toán Tử LIKE Trong SQL
-
LIKE Trong SQL Server - Comdy
-
Toán Tử So Sánh LIKE, IN Trong SQL - Thủ Thuật
-
Toán Tử LIKE Trong SQL Tìm Kiếm Mẫu Chỉ định - BAC
-
Mệnh đề Like Trong SQL - Hoclaptrinh
-
Điều Kiện LIKE Trong SQL Server - GreenSQL
-
Toán Tử LIKE Trong SQL | Lập Trình Từ Đầu
-
Toán Tử LIKE Và NOT LIKE Trong SQL
-
Tìm Kiếm Gần đúng Trong SQL Server | How Kteam
-
Bài 3: Câu Lệnh Tìm Kiếm Trong Sql Server, Truy Vấn Dữ Liệu ...