zoukankan      html  css  js  c++  java
  • MYSQL基础学习知识点

    【watch and learn】

    1.mysql不支持top x用法,支持limit x,y用法;

    2.多表连接查询
     1. table1 INNER JOIN table2: 内连接。只显示连接的两张表的交集行。
     2. table1 LEFT JOIN table2: 左外连接。显示table1的所有行,即使在table2中没有匹配的行。
     3. table1 RIGHT JOIN table2:右外连接。显示table2的所有行,即使在table1z中没有匹配的行。
     4. table1 FULL JOIN table2: 即使table1中的行在table2中没有匹配,或者table2中的行在table1中没有匹配。它仍返回table1和table2两张表中所有匹配的行。

    3. 类型int(M)

    1 bytes = 8 bit ,一个字节最多可以代表的数据长度是2的8次方,在计算机中也就是 -128到127

    tinyint 一个字节、 smallint  两个字节、 MEDIUMINT 三个字节、 int 四个字节、 BIGINT 八个字节。

    BIT[M] 位字段类型,M表示每个值的位数,范围从1到64,如果M被忽略,默认为1

  • 相关阅读:
    28
    27
    26
    25
    24
    23
    17
    16
    15
    14
  • 原文地址:https://www.cnblogs.com/tris/p/4103873.html
Copyright © 2011-2022 走看看