Linux中MySQL数据库的使用③-----编码和基本数据类型
程序员文章站
2022-06-15 19:45:04
MySQL的编码数据库的编码集会默认继承给数据库中的表,表的编码集会默认继承给表中的字段。create database testdb charset=utf8;设置编码集为utf8可以在MySQL中使用中文保存数据。MySQL的数据类型1.整型int一个无符号数 一定是非负数create table test( age int(2));2.浮点型float(M, D)M表示支持多少个长度,D是小数点后面的位数create table test( aa float...
MySQL的编码
数据库的编码集会默认继承给数据库中的表,表的编码集会默认继承给表中的字段。
create database testdb charset=utf8;
设置编码集为utf8可以在MySQL中使用中文保存数据。
MySQL的数据类型
1.整型int
一个无符号数 一定是非负数
create table test(
age int(2)
);
2.浮点型
float(M, D)
M表示支持多少个长度,D是小数点后面的位数
create table test(
aa float(10, 2)
);
3.字符串类型
CHAR(M) M为0~255之间的整数
VARCHAR(M) M为0~65535之间的整数,值的长度+1个字节
create table test(
varchar(3),
char(3)
);
CHAR(3):固定占3字节,不足用空格补齐
VARCHAR(3):字符占1字节,额外用1字节记录位长
4.枚举类型(enum)
多选一的时候使用的一种数据类型
枚举类型的优点:
1.限制可选值
2.节省空间
3.运行效率高
create table test(
sex enum('男', '女') default '保密'
);
#在输入时只能选择男, 女或者保密。默认为保密
5.时间类型
1.datetime
年-月-日 时-分-秒
create table test(
name varchar(10),
birthday datetime
);
insert into test values('chen', '1999-04-02 15:08:31');
insert into test values('chen', now());
2.date
年-月-日
create table test(
name varchar(10),
birthday date
);
insert into test values('chen', '1999-04-02');
6.布尔型
create table test(
married bool
);
insert into test values(True);
本文地址:https://blog.csdn.net/weixin_43670190/article/details/108557891
上一篇: Access字符串处理函数整理
下一篇: 加密你的Access数据库asp打开方法
推荐阅读
-
Linux中的编码转换程序convmv的安装和使用教程
-
wiindows下数据库文件使用脚本同步到linux下的mysql数据库中
-
Linux中MySQL数据库的使用③-----编码和基本数据类型
-
修改MySQL数据库中表和表中字段的编码方式的方法_MySQL
-
MYSQL数据库使用UTF-8中文编码乱码的解决办法_MySQL
-
MYSQL数据库使用UTF-8中文编码乱码的解决办法_MySQL
-
MySQL数据库的基本使用和管理
-
Linux中的编码转换程序convmv的安装和使用教程
-
MySQL中Distinct和Group By语句的基本使用教程_MySQL
-
linux系统中mysql数据库的导入和导出_MySQL