SQL-LIKE
Posted bashaowei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL-LIKE相关的知识,希望对你有一定的参考价值。
1.从上面的 "Persons" 表中选取居住在以 "N" 开头的城市里的人:
select * from Persons where city like ‘N%‘;
2.从“Persons”中选取居住在以"g"结尾的城市里的人:
select * from Persons where City like ‘%g‘;
3.从 "Persons" 表中选取居住在包含 "lon" 的城市里的人:
select * from Persons where City like ‘%lon%‘;
以上是关于SQL-LIKE的主要内容,如果未能解决你的问题,请参考以下文章