-
having语句设置分组条件 条件:必须 显示的字段 或者 聚合函数查看全部
-
数据表 行称为记录,列称为字段; 打开数据库:USE db_name; 查看当前打开的数据库:SELECT DATABASE( ); 创建数据表 CREATE TABLE [IF NOT EXISTS] table_name( column_name(列名称) data_type(数据类型), ... 最后一行不加逗号 );查看全部
-
group by语句对查询结果分组 分组的标识:字段或者字段在查寻显示中的位置(从1开始)查看全部
-
group by语句对查询结果分组查看全部
-
where语句进行条件查询查看全部
-
查寻记录 select select_expr [,select_expr ...] [ from tbl_name [where where_condition] [group by {col_name | positioin} [asc | desc],...] [having where_condition] [order by {col_name |expr |position} [asc | desc],...] [limit {[offset,] row_count | row_count offset offset}] ]查看全部
-
字符型 CHAR(M) M 个字节 0 <= M <= 255 定长 VARCHAR(M) 变长 TINYTEXT 2^8 TEXT 2^16 MEDIUMTEXT 2^24 LONGTEXT 2^32 ENUM('value1','value2'...) 1、2个字节,取决于枚举的个数(最多65535个值) 单选 STE('value1','value2'...) 1、2、3、4、8个字节,取决于set 成员的数目(最多64个值) 多选查看全部
-
删除记录(单表删除) delete from tbl_name [where where_condition]查看全部
-
更新记录(意表更新) update [low_priority] [ignoer] table_reference set col_name={expr | default}[,...] [where where_condition]查看全部
-
浮点型 FLOAT[(M,D)] DOUBLE[(M,D)] M:数字总的位数 D:小数点后位数查看全部
-
整型 TINYINT 2^8 1B SMALLINT 2^16 2B MEDIUMINT 2^24 3B INT 2^32 4B BIGINT 2^64 8B 类型后加UNSIGNED表示无符号,即从零开始查看全部
-
插入记录 A:insert [into] tbl_name set col_name={expr | default},... 适合插入一个记录 B:insert [into] tbl_name [(col_name,...)] select ... 可以将子查询的结果作为数据实现多条记录插入查看全部
-
插入记录(插入多条记录) insert [into] tbl_name [(col_name,...)] {values | value} ({expr | default},...),(...),... 插入数据可以是函数或者表达式 默认值可以直接插入 default 主键可以直接插入 null 或者 default查看全部
-
ANY SOME ALL 关键字查看全部
-
C、数据表更名 单张表更名:alter table tbl_name rename [to | as] new_tbl_name 多张表更名:rename table tbl_name to new_tbl_name [,tbl_name2 to new_name2]...查看全部
举报
0/150
提交
取消