• 一、mysql使用入门


     1 mysql -h localhost -u root -p123456 登录mysql服务器
     2 show databases 列出所拥有的数据库
     3 use www 选择一个www的数据库
     4 show tables 列出该库的数据表
     5 create table emp (id int auto_increment,name varchar(20),birdate date); 创建一个emp表,有id,name,birdate三个字段
     6 insert into emp values(null,'Libin','2014-07-06'); 插入一条数据
     7 insert into emp values(null,'Libin','2014-07-06'),(null,'Min','2014-07-07') 插入多条数据
     8 update emp set name = 'Php' where name = 'Libin'; 修改单个字段数据
     9 delete from emp where name = 'Php'; 删除符合条件的数据
    10 alter table emp modify name char(125); 修改单个字段的属性,注:modify不能修改字段名
    11 alter table emp change name cname char(125); 修改单个字段的属性,并能修改字段名次
    12 alter table emp modify name char(200) first | after birdate 修改单个字段的属性,并指定修改后的位置
    13 alter table emp add column sex tinyint(1) first | after name 增加一个字段,并可以指定它的位置
    14 alter table emp delete column sex 删除一个字段
    15 describe emp 查看一个表的结构 = desc emp
    16 show create table emp 同上,但更详细
    17 drop table emp 删除一个表
    18 select * from emp 查询emp表所有数据
    19 select name from emp 只查询emp表的name字段
    20 select distinct name from emp 查询name不重复的数据
    21 select * from emp where name = 'Php'; 查询name条件为php的数据
    22 select * from emp where name = 'Php' order by id desc | asc; 条件并排序
    23 select max(id),min(id),sum(id) from emp 查询最大、最小、总计的id的数据
    24 select * from emp limit 2 只要2条数据
    25 select * from emp limit 9,10 从第10条数据开始,取10条数据
    26 select count(id) from emp 求出一共有多少条数据
    27 select * from emp where id in(select id from emp where name = 'Php' or name = 'Libin') 子查询,首先查询name为php或libin的id,然后通过in查询所有能匹配id的数据
    28 select a.name,b.name from emp as a,emp as b where a.id=b.id and a.id=100 id为100的内联(表联)
    29 select a.name,b.name from emp as a left join emp as b on a.id=b.id where a.id = 100 id为100的左连接
    30 select a.name,b.name from emp as a right join emp as b on a.id=b.id where a.id = 100 id为100的右连接
    31 
    32 DCL::
    33 grant select,insert on www.* to 'test'@'localhost' identified by '123456' 给www下所有的表创建一个只有select跟insert权限的用户test,密码为123456
    34 revoke insert on www.* from 'test'@'localhost' 收回test的insert权限
    35 
    36 concat('Li','Bin') 字符串拼接函数,可对查询的结果字段直接进行拼接
    37 
    38 select '<?php echo 100;?>' into outfile 'c://qqq.php' 文本输出,简直是个危险的漏洞
    39 select load_file('c://qqq.php'); 读取一个文本
  • 相关阅读:
    Linux内核参数优化
    Linux:文件系统层次结构标准(Filesystem Hierarchy Standard)
    全球海底光缆及我国海底光缆分布
    CentOS单网卡绑定双IP
    Weblate 2.11安装配置文档
    Docker安装及常用命令
    好文要保存
    rsh命令配置于使用
    RHEL(或CentOS)中关于逻辑卷( Logical Volume Manager,LVM)的一些概念及使用LVM的例子
    git学习资料
  • 原文地址:https://www.cnblogs.com/shibazi/p/3826701.html
Copyright © 2020-2023  润新知