---創(chuàng)建? ?TCL? 數(shù)據(jù)庫
create database TCL charset = utf8;
--使用 ‘TCL’ 數(shù)據(jù)庫
use TCL
--創(chuàng)建一個商品goods 數(shù)據(jù)表
create table goods? ?(
id int unsigned primary key auto_increment not null,
name varchar(150) not null,
cate_name varchar(40) not null,? ---商品類型? 分類
brand_name varchar(40) not null,--品牌
price decimal(10,3) not null default 0, ---價格? 最多十位 并且保留三位小數(shù)
is_show bit not null default 1,--是否顯示? (bit要么0或者1)
is_saleoff bit not null default 0 --是否展示來區(qū)別商品與是否買完意思不同
);
插入數(shù)據(jù)
insert into goods value(0,'電腦')
刪除數(shù)據(jù)
drop table goods
SQL語句
---查詢類型cate_name 為‘超級本的商品’
select * from goods where cate_name = '超級本'
select name as 商品名稱,price as 商品價格 from goods where cate_name='電腦';
---顯示商品種類
select distinct cate_name from goods;? ---去重
select cate_name from goods group by cate_name;? ?----分組
---差每個種類商品的名稱
select? cate_name,group_concat(name) from goods group by cate_name;