美文网首页
mysql常用命令

mysql常用命令

作者: WarmladyYY | 来源:发表于2018-07-03 17:09 被阅读0次

    sql四大操作语句(尽量用大写)

    一、增

            insert init `表`( 字段列表 )value (值列表)

    二、删

            delete from `表`  where 条件

    三、改

            update `表` set 字段=值,字段=值

    四、查

            select * from 表

    where 条件

    where name = "lele"  (名字是乐乐的字段 )

    where age < 12    ( 年龄小于12 )

    where name = "lele" and age < 12 ( 名字是乐乐并且年龄小于12的 )

    where name = "lele" or age < 12     (名字是乐乐或者年龄小于12的 )

    order 排序

    order by (条件) ASC/DESC    ( ASC-升序   DESC-降序 )

    select * from  init  order by age ASC,pic desc;( 按照年龄升序查找,如果年龄相同,再按照价格降序排序 )

    1.show databases;列出所有数据库

    2.create database test;创建一个test数据库

    3.drop database test; 删除test数据库

    4.use test;进入test数据库

    5.show tables from test; 列出test数据库中所有表

    6.create table initTable(       

             Id int primary key AUTO_INCREMENT,

             Name varchar(18),

             Say varchar(100)

    );  创建表

    7.desc init;查看表

    8.INSERT INTO `init` (`ID`,`Name`,`Say`) VALUES(0,'乐乐','我爱吃火腿'); 插入数据

    9.SELECT * FROM `init`; 查看init表中所有数据

    相关文章

      网友评论

          本文标题:mysql常用命令

          本文链接:https://www.haomeiwen.com/subject/dsljuftx.html