zoukankan      html  css  js  c++  java
  • MySql之_增删改查

    增删改查(curd)

    curd的解释: 代表创建(Create)、更新(Update)、读取(Retrieve)和删除(Delete)

    查询基本使用

    • 查询所有列
        select * from 表名;
      例:
        select * from classes;
    • 查询指定列
       select 列1,列2,... from 表名;
      例:
       select id,name from classes;
    • 定条件查询
      -- 查询 name为小李飞刀的所有信息
         select * from students where name="小李飞刀";

      -- 查询 name为小李飞刀的所有信息
         select * from students where id>3;

    • 可以使用as为列或表指定别名
            select 字段[as 别名] , 字段[as 别名] from 数据表 where ....;
              例:
         select name as 姓名,gender as 性别 from students;
      
       字段的顺序
                 select id as 序号, gender as 性别, name as 姓名 from students;

    增加

    格式:INSERT [INTO] tb_name [(col_name,...)] {VALUES | VALUE} ({expr | DEFAULT},...),(...),...
    • 说明:主键列是自动增长,但是在全列插入时需要占位,通常使用0或者 default 或者 null 来占位,插入成功后以实际数据为准
    • 全列插入:值的顺序与表中字段的顺序对应
        insert into 表名 values(...)
      例:
        insert into students values(0,’郭靖‘,1,'蒙古','2016-1-2');
    • 部分列插入:值的顺序与给出的列顺序对应
        insert into 表名(列1,...) values(值1,...)
      例:
        insert into students(name,hometown,birthday) values('黄蓉','桃花岛','2016-3-2');
    • 上面的语句一次可以向表中插入一行数据,还可以一次性插入多行数据,这样可以减少与数据库的通信
    • 全列多行插入:值的顺序与给出的列顺序对应
        insert into 表名 values(...),(...)...;
      例:
        insert into classes values(0,'python1'),(0,'python2');
        
        insert into 表名(列1,...) values(值1,...),(值1,...)...;
      例:
        insert into students(name) values('杨康'),('杨过'),('小龙女');

    修改

    格式: UPDATE tbname SET col1={expr1|DEFAULT} [,col2={expr2|default}]...[where 条件判断]
        update 表名 set 列1=值1,列2=值2... where 条件
      例:
        update students set gender=0,hometown='北京' where id=5;

    删除

    DELETE FROM tbname [where 条件判断]
       -- 物理删除
            -- delete from 表名 where 条件
               delete from students; -- 整个数据表中的所有数据全部删除
               delete from students where name="小李飞刀";

            -- 逻辑删除
            -- 用一个字段来表示 这条信息是否已经不能再使用了
            -- 给students表添加一个is_delete字段 bit 类型
               alter table students add is_delete bit default 0;
               update students set is_delete=1 where id=6;
  • 相关阅读:
    Hadoop命令手册
    编程算法
    综合8种子排序算法总结和比较
    android 创建一个新的每次project什么时候 请问自己主动 参加 V7依赖?
    【JDBC】java PreparedStatement操作oracle数据库
    【cocos2dx 加载资源目录】
    Project Euler:Problem 39 Integer right triangles
    矿Java开发学习之旅------>Java排序算法经典的二分法插入排序
    [React Intl] Render Content with Placeholders using react-intl FormattedMessage
    [React Intl] Install and Configure the Entry Point of react-intl
  • 原文地址:https://www.cnblogs.com/lt35315139/p/9379365.html
Copyright © 2011-2022 走看看