摘要:
select 语法 SELECT [ALL | DISTINCT] { * | table.* | [table/field[as alias][table/field1[as alias1][,...]]} FROM table_name [as table_alias] [left | righ 阅读全文
摘要:
SEED -- 自连接数据库: CREATE TABLE `school`.`category`( `categoryid` INT(3) NOT NULL COMMENT 'id', `pid` INT(3) NOT NULL COMMENT '父id 没有父则为1', `categoryname 阅读全文
摘要:
create database if not exists `school`; -- 创建一个school数据库 use `school`;-- 创建学生表 drop table if exists `student`; create table `student`( `studentno` int 阅读全文