MySQL的查詢可以分為交叉聯(lián)接、內(nèi)聯(lián)接、外聯(lián)接、自然聯(lián)接、straight_join
下面對于查詢的學(xué)習(xí),會用到以下四張表:
create table t_commodity_type(
`id` BIGINT(20) not null auto_increment comment '商品類別ID',
`time` TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP comment '入庫時間',
`name` VARCHAR(32) not null DEFAULT '' comment '名稱',
`is_use` bit(1) not null DEFAULT b'0' comment '是否上架',
primary key (`id`)
)engine=innodb DEFAULT CHARSET=utf8 comment '商品類型表';
create table t_commodity(