美文网首页
SQL基础01

SQL基础01

作者: Bob林 | 来源:发表于2016-09-06 23:48 被阅读7次

    什么是SQL

         SQL(structured query language):结构化查询语言
        SQL是一种对关系型数据库中的数据进行定义和操作的语言
        SQL语言简洁,语法简单,好学好用
        在程序运行过程中,要想操作(增删改查,CRUD)数据库中的数据,必须使用SQL语句
        Create , Retrive, Update, Delete
    

    SQL中常用的关键字

        select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等等
    

    SQL中的语句的种类

        数据定义语句(DDL:Data Definition Language)
        数据操作语句(DML:Data Manipulation Language)
        数据查询语句(DQL:Data Query Language)
        其他DQL常用的关键字有where,order by,group by和having
    

    SQL中约束

    简单约束:

         ①不能为空  not  null
         ②不能重复   unique
         ③默认值  default
    

    示例:

    create table t_dog (id integer, name test not null unique,age integer not null default 60);
    

    主键:

    Primary Key,简称PK 用来唯一地标示某一条记录,可以有多个字段或一个字段
    列如t_dog 可以添加一个id作为主键,相当于狗的身份证
    

    添加主键约束原因:

      为了保持每条记录的唯一性,增加了主键约束
    

    主键设计原则:

            ①对用户没有意义
            ②永远不要更新
            ③不应包含动态变化的数据
            ④应当由计算机自动生成
    

    主键的声明:

        在创表的时候用Primary Key 声明一个主键
        例如:create table t_dog (id integer primary key,name text, age integer);integer类型的id作为t_dog表的主键
        如果想要主键自动增长(必须为integer类型),应当增加autoincrement
        例如:create table t_dog(id integer primary key autoincrement,name text,age integer);
    

    DDL语句

    创表

    格式:create table 表名 (字段名1 字段类型1, 字段名2 字段类型2, …) ;
    示例:create table t_dog (id integer, name text, age inetger, score real) ;
    经验语句优化:
    创建表格时, 最好加个表格是否已经存在的判断, 这个防止语句多次执行时发生错误
    create table if not exists 表名 (字段名1 字段类型1, 字段名2 字段类型2, …) ;
    

    DML语句

    插入数据(insert)

      格式:insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ;
      示例:insert into t_student (name, age) values (‘zs’, 10) ;
      注意:数据库中的字符串内容应该用单引号 ’ 括住
    

    更新数据(update)

        格式:update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ;
        示例:update t_student set name = ‘zs’, age = 20 ;
        注意:上面的示例会将t_student表中所有记录的name都改为zs,age都改为20
    

    删除数据(delete)

        格式:delete from 表名 ;
        示例:delete from t_dog ;
        注意:上面的示例会将t_student表中所有记录都删掉
    

    DQL语句

    格式:

        select 字段1, 字段2, … from 表名 ;
        select * from 表名;   //  查询所有的字段
    

    示例:

        select name, age from t_dog ;
        select * from t_dog ;
        select * from t_dog where age > 10 ;  //  条件查询
    

    条件语句

        作用:如果只想更新或者删除某些固定的记录,那就必须在DML语句后加上一些条件
    

    条件语句的常见格式

        where 字段 = 某个值 ;   // 不能用两个 =
        where 字段 is 某个值 ;   // is 相当于 =
        where 字段 != 某个值 ;
        where 字段 is not 某个值 ;   // is not 相当于 !=
        where 字段 > 某个值 ;
        where 字段1 = 某个值 and 字段2 > 某个值 ;  // and相当于C语言中的 &&
        where 字段1 = 某个值 or 字段2 = 某个值 ;  //  or 相当于C语言中的 ||
    

    条件语句练习

    示例:
     ①将t_dog表中年龄大于10 并且 姓名不等于zs的记录,年龄都改为 5
      update t_dog set age = 5 where age > 10 and name != ‘zs’ ;
      ②将t_dog表中名字等于li的记录,score字段的值 都改为 age字段的值
      update t_dog set score = age where name = ‘li’ ;
    

    查询相关语句

    统计

      count(X)
      select count(*) from t_student
      计算所有记录个数
    
      select count(age) from t_student
      计算age有值的记录个数(Null不计算在内)
    
      avg(X):计算某个字段的平均值
      sum(X):计算某个字段的总和
      max(X):计算某个字段的最大值
      min(X):计算某个字段的最小值
    

    排序:

        查询出来的结果可以用order by进行排序
        select 字段1, 字段2 from 表名 order by 字段 ;
        select * from t_student order by age ;
    
        默认是按照升序排序(由小到大),也可以变为降序(由大到小)
        select * from t_student order by age desc ;  //降序
        select * from t_student order by age asc ;   // 升序(默认)
    
        也可以用多个字段进行排序
        select * from t_student order by age asc, height desc ;
        先按照年龄排序(升序),年龄相等就按照身高排序(降序)
    

    limit分页

      使用limit可以精确地控制查询结果的数量,比如每次只查询10条数据
      select * from 表名 limit 数值1, 数值2 ;
      示例:select * from t_student limit 4, 8 ;
      可以理解为:跳过最前面4条语句,然后取8条记录
    

    分页

        limit常用来做分页查询,比如每页固定显示5条数据,那么应该这样取数据
        第1页:limit 0, 5
        第2页:limit 5, 5
        第3页:limit 10, 5
        第n页:limit 5*(n-1), 5
    
        特殊案例:select * from t_student limit 7 ;
        相当于select * from t_student limit 0, 7 ;
        表示取最前面的7条记录

    相关文章

      网友评论

          本文标题:SQL基础01

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