dcsxlh

导航

 

2025年4月28日

摘要: CREATE table dept(dept1 VARCHAR(6),dept_name VARCHAR(20)) default charset=utf8; INSERT into dept VALUES ('101','财务');INSERT into dept VALUES ('102','销 阅读全文
posted @ 2025-04-28 17:19 多测师_肖sir 阅读(59) 评论(0) 推荐(0)
 
摘要: 一个学生表 分别记录姓名,年龄,性别,班级,语文,数学,英语字段 create table student2( id int primary key , name char(20), sex char(10), age int(3), mobile char(20), class char(10), 阅读全文
posted @ 2025-04-28 16:12 多测师_肖sir 阅读(32) 评论(0) 推荐(0)
 
摘要: 一、对表字段进行操作 1.新建表 create table d3( id int(10) PRIMARY key , name varchar(20) UNIQUE, age int(10) DEFAULT 18, fs int(20) not null )DEFAULT charset=utf8; 阅读全文
posted @ 2025-04-28 09:42 多测师_肖sir 阅读(96) 评论(0) 推荐(0)