简单的SQL查询工作台

时间:2015-10-24 20:36:30

标签: mysql sql workbench

披萨桌的我的脚本是:

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 );

我试图创建一个查询来确定哪些比萨饼含有奶酪..

我尝试的是:

选择比萨饼 从 浇头 哪里 浇头=" $ $奶酪&#34 ;;

但它不起作用

3 个答案:

答案 0 :(得分:1)

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

应该做的伎俩。

答案 1 :(得分:0)

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

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

Check the manual有关LIKE的完整说明

答案 2 :(得分:0)

尝试以下查询

SELECT * 来自比萨饼 在哪里,比如'%CHEESE%'