摘要:
1.数值型 1.整型 tinyint 1 smallint 2 mediumint 3 int/Integer 4 bigint 8 特点: 都可以设置无符号和有符号数,默认有符号,通过unsigned设置无符号 如果超出范围,会报out of range 异常,插入临界值 长度不指定,会有一个默认 阅读全文
摘要:
创建数据库: create database 【if not exists】 库名 【character set 字符集名】; 修改库: alter database 库名 character set 字符集合; 如想修改数据库名,直接通过修改文件夹名的方式去修改 删库: drop database 阅读全文
摘要:
插入: 第一种方式: insert into table(字段名) values(值),(); 支持插入多条记录,支持子查询,即insert into table 子查询 第二种方式: insert into table set 字段名=值 修改: 修改单表记录: update 表名 set 列 = 阅读全文