mysql -uroot -p123 登录数据库 u用户名 p密码
create database if not exists ysf; 创建数据库
show databases; 查询数据库
mysqladmin -uroot -p123 password 123456 改密码
drop database if exists ysf; 删除数据库
use ysf; 切换数据库
source /root/147.sql 导入数据库
mysqldump -uroot -p vpndata > ysf.sql 导出数据库
create table ysftable(id int (7) not null,name varchar(20) not null,age tinyint);
学号 整数 7个字符 不为空 名字 长度 20 字节 不为空
drop table ysftable; 删除数据表
show tables; 查看有哪些表
show create table ysf.ysftable; 查看表的创建命令
create user 'ysf'@'127.0.0.1' identified by 'ysf123!'; 创建用户
mysql -uysf -pysf123! -h127.0.0.1 登录用户,记得加ip地址
show character set; 查看支持的所有字符集
show tables from ysf; 查看有哪些库
desc ysf.ysftable; 查看库的表结构(库名加表名)
insert into ysftable(id,name,age) values(1909001,'zhangsan',20),(1909002,'lisi',19),(1909003,'wangwu',18);
表名 ID 名字 年龄 值 s(多个) 学号 名字张三 20岁 学号 李四 年龄19 学号 王五 年龄18
select * from ysftable; 查看表内容
select name from ysftable; 查看ysftable表name列的内容
select * from ysftable order by age; 查看ysftable表内容并倒序
select * from ysftable order by id desc; id列排序
select * from ysftable order by age limit 1,2; 查看第一和第三行
select * from ysftable order by age limit 2,4; 跳过前两行,查看后四行
select * from ysftable where age >=18; 查看年龄大于等于18的
select * from ysftable where age >=18 and name='lisi'; 查看年龄大于18并且名字等于lisi的人
insert into ysftable(id,name) value(1909007,'laowang'); 不添加年龄示例
select * from ysftable where age is null; 查询年龄为空的人
update ysftable set age=22 where name='laowang' and id=1909007; 给已有名字为laowang的人添加年龄
delete from ysftable where id=1909007 and name='laowang' and age=null; 删除ID为1909007名字为laowang年龄为空的人
delete from ysftable; 删除整张表
insert into ysftable(id,username,passwd) values(1001,'zhangsan',12345678),(1002,'lisi',12345678),(1003,'wangwu',12345678),(1004,'zhaoliu',12345678),(1005,'xiaowang',12345678);
评论 (0)