摘要:
一、建表 create table student( stu_no int, stu_name varchar(10), sex char(1), age int(3), edit varchar(20) ) DEFAULT charset=utf8; insert into student val 阅读全文
摘要:
一、建表语句: 已知2张基本表: 部门表:dept (部门号,部门名称); 员工表 emp(员工号,员工姓名,年龄,入职时间,收入,部门号) CREATE table dept(dept1 VARCHAR(6),dept_name VARCHAR(20)) default charset=utf8; 阅读全文
摘要:
一、表格 员工表 sid:员工编号、name:姓名、age:年龄、woektime_start 入职时间,incoming工资 dept2 部门编号 部门表 dept1 部门编号,dept_name 部门名称 二、建表语句 CREATE table dept( dept1 VARCHAR(6), d 阅读全文