博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
增删改查
阅读量:5044 次
发布时间:2019-06-12

本文共 383 字,大约阅读时间需要 1 分钟。

--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

你可能感兴趣的文章