标签: sql oracle
我有一个名为Customer的SQL表,其中包含一个名为customer_country的列。我想显示包含字母u的所有国家/地区。
Customer
customer_country
u
我该怎么做?我猜它是沿着
select customer_country from Customer;
也许使用类似的声明? 此致
答案 0 :(得分:2)
select customer_country from Customer where customer_country like '%u%'