博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL语句(方便记忆版)
阅读量:5838 次
发布时间:2019-06-18

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

1.  DML

img_55dc5aede63622ef6d9cd204f8984359.png

2. DDL

img_528cc0d93e4b7b28ef502124efce0cf5.png

3.  例子

-- 建表

use mydb;

createtable user(

userid int,

username varchar(20),

password varchar(20)

);

-- 添加字段到首列 first

-- alter table user add email VARCHAR(20)  first;

-- 修改字段 change

alter table user change email email varchar(50) after userid;

-- 删除字段  drop

alter table user drop phone;

-- 批量插入数据

-- insert intouser(username,password,email)values('ls','123','ls@qq.com'),('ls','123','ls@qq.com');

-- 将user表中的数据整体插入到user2中

insert intousers select * from user

-- 更新操作

update tbname set 字段=新值 [where ]

update user set username = 'ww' where userid =3;

-- 删除操作

delete from tbname [where]

delete from user where userid = 4;

转载地址:http://oyncx.baihongyu.com/

你可能感兴趣的文章
SQL Server 数据库的数据和日志空间信息
查看>>
前端基础之JavaScript
查看>>
自己动手做个智能小车(6)
查看>>
自己遇到的,曾未知道的知识点
查看>>
P1382 楼房 set用法小结
查看>>
分类器性能度量
查看>>
docker 基础
查看>>
解决灾难恢复后域共享目录SYSVOL与NELOGON共享丢失
查看>>
写一个bat文件,删除文件名符合特定规则,且更改日期在某
查看>>
我的友情链接
查看>>
写Use Case的一种方式,从oracle的tutorial抄来的
查看>>
【C#】protected 变量类型
查看>>
Ubuntu解压
查看>>
爬虫_房多多(设置随机数反爬)
查看>>
藏地密码
查看>>
爬虫去重(只是讲了去重的策略,没有具体讲实现过程,反正就是云里雾里)...
查看>>
react中将px转化为rem或者vw
查看>>
8816
查看>>
avcodec_open2()分析
查看>>
何如获取单选框中某一个选中的值
查看>>