基本的SQL语言
Posted f1veseven
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本的SQL语言相关的知识,希望对你有一定的参考价值。
创建
创建数据库,创建表
create database test; create table user( id int not null primary key, name varchar(32) not null, password varchar(32) not null);
可以用desc查看创建的表的结构
desc user;
增
alter添加字段
alter table user add sex int;
insert into添加数据
insert into user (id,name,password) values (001,‘a‘,‘123‘), (002,‘b‘,‘qwe‘), (003,‘c‘,‘zxc‘);
删
delete删除数据
delete from user where id=003; #删除指定行 delete from user; #删除表
alter删除字段
alter table user drop sex;
改
alter修改字段
alter table usermodify password int;
update修改数据
update user set name=‘xiaoming‘,password=‘123456‘ where id=001;
以上是关于基本的SQL语言的主要内容,如果未能解决你的问题,请参考以下文章