增删改查

--create database 库名--创建数据库
--drop database 库名--删除数据库
--create table 名--创建表
--drop table 名-- 删除表
--insert into 名 values() --增加
--delete from 名 where 列=值 -- 删除
--update 名 set 列=修改值 where筛选 主键列=值 --修改
--select*from 名 --查全部
--select 列,列,列 form 名-- 按列查询
--select*from 名 where 列>/<值 --筛选查询
--select*from 名 where name like '内容' --模糊查询

原文地址:https://www.cnblogs.com/songfengyao/p/5576041.html