显示SQL中包含特定字母的记录

时间:2014-04-04 14:56:38

标签: sql oracle

我有一个名为Customer的SQL表,其中包含一个名为customer_country的列。我想显示包含字母u的所有国家/地区。

我该怎么做?我猜它是沿着

的方向
  select customer_country
  from Customer;

也许使用类似的声明? 此致

1 个答案:

答案 0 :(得分:2)

select customer_country 
from Customer 
where customer_country like '%u%'