[SQL]like文で後方一致で検索するサンプル
書式
select * from テーブル名
where 項目 like '%値’
使用例
SELECT * FROM Products WHERE ProductName like '%Ang'
結果
ProductID | ProductName | SupplierID | CategoryID | Unit | Price |
---|---|---|---|---|---|
2 | Chang | 1 | 1 | 24 – 12 oz bottles | 19.00 |
Coding Changes the World
書式
select * from テーブル名
where 項目 like '%値’
使用例
SELECT * FROM Products WHERE ProductName like '%Ang'
結果
ProductID | ProductName | SupplierID | CategoryID | Unit | Price |
---|---|---|---|---|---|
2 | Chang | 1 | 1 | 24 – 12 oz bottles | 19.00 |