MariaDB数据类型可以分为数字,日期和时间以及字符串值。
使用数据类型的原则:够用就行, 尽量使用范围小的,而不用大的
常用的数据类型
约束
# varchar,与char 的区别
1> 简单的创建一个表 (注:进入数据库里)
create table clasees;( id tinyint unsigned, name varchar(20));
#查看 show tables;
2>查看 表里有哪些字段
desc clasees;
3>查看表的结构
show create table clasees;
4>创建一个稍微复杂一丢丢的表
创建students表(id, name, age, high, gender, cls_id) create table students( id tinyint unsigned, name varchar(20), age tinyint unsigned, high decimal(5,2), gender enum(‘男‘,‘女‘,‘人妖‘,‘中性‘) default (‘人妖‘), cls_id tinyint unsigned);
#
#2查看下
desc students;
原文:https://www.cnblogs.com/myxxjie/p/10878848.html