标签:table school sql 执行顺序 插入数据 style create time 数据
SQL 基础练习
-- 为注释
-- 创建数据库 CREATE DATABASE school CHARACTER SET UTF8; -- 使用数据库 USE school; -- id: 学生的id -- name:学生的名字 -- nickname:学生的昵称 -- sex:性别 -- in_time: 入学的时间
-- students 表 CREATE TABLE students ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(20) NOT NULL, nickname VARCHAR(20) NULL, sex CHAR(1) NULL, in_time DATETIME NULL ) -- 插入数据 单条数据 insert into students(name,nickname,sex,in_time) value(‘张三2‘,‘三哥2‘,‘男‘,now()); -- 插入数据 多条数据 insert into students(name,nickname) values (‘张三2‘,‘三哥2‘), (‘张三2‘,‘三哥2‘), (‘张三2‘,‘三哥2‘), (‘张三2‘,‘三哥2‘); -- 查询语句 -- 查询语句的执行顺序 select from [where group by having order by limit ] select * from students; -- 查询 为男生的数据,并且倒叙排序 limit 分页 0,2 select id, name,nickname from students where sex=‘男‘ order by id desc limit 0,2;
标签:table school sql 执行顺序 插入数据 style create time 数据
原文地址:https://www.cnblogs.com/zhaoyingjie/p/9030653.html