首先mysql -uroot -p 进入MySQL
选择一个数据库并使用
在该数据库内创建表格
create table homework_tb(
id int(11) comment '编号',
company_name char(6) comment '公司名称',
introduce varchar(100) comment '介绍',
content1 tinytext comment '内容1',
content2 text comment '内容2',
content3 mediumtext comment '内容3',
content4 longtext comment '内容4',
description1 blob comment '描述1',
description2 mediumblob comment '描述2',
description3 longblob comment '描述3',
iq tinyint comment '0705数据库IQ',
salary smallint comment '薪资',
five_plan mediumint comment '五年计划',
code_num bigint comment '代码量',
price float(8, 2) comment '价格',
salary2 double(10, 2) comment '员工薪资',
total_amount decimal(10, 2) comment '订单总金额',
huodongjiezhi date comment '活动截止日期',
start datetime comment '上班时间',
last_login timestamp comment '最后登陆时间',
start_time time comment '任务开始时间',
manufacture year(4) comment '生产年份'
)engine=InnoDB default character set utf8mb4 collate utf8mb4_0900_ai_ci;
查询刚才新建的表的列和对应的数据类型
SHOW COLUMNS FROM homework_tb;