简单 SQL 查询 workbench

Simple SQL Query workbench

我的披萨脚本 table 是:

use sys;
 create table pizzas (
 name varchar(50),
 toppings varchar(50),
 price float);
  insert into pizzas (name, toppings, price) values ('margarita', 'cheese, tomato', 5.0);
insert into pizzas (name, toppings, price) values ('hawaiian', 'cheese, tomato, ham, pineapple', 5.5 );
insert into pizzas (name, toppings, price) values ('hot veggie', 'cheese,        tomato, chilli, onion', 5.5 );

我正在尝试创建查询以确定哪些比萨饼包含奶酪..

我试过的是:

SELECT 披萨 从 浇头 在哪里 toppings="$奶酪$";

但是没用

SELECT name FROM pizzas WHERE toppings LIKE '%cheese%'

应该可以解决问题。

这不是最好的数据库设计,但如果您使用 LIKE 语法,它应该适合您

 SELECT pizzas FROM toppings WHERE toppings LIKE "%cheese%";

Check the manual 完整描述 LIKE

尝试下面的查询

SELECT * 来自比萨饼 WHERE TOPPINGs like '%CHEESE%'