摘要: 数据SQL CREATE TABLE `Employee` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(32) DEFAULT NULL, salary int DEFAULT NULL PRIMARY KEY (`id`) ) ENGINE 阅读全文
posted @ 2022-01-22 12:06 UsingStuding 阅读(75) 评论(0) 推荐(0)
摘要: 问题描述 数据SQL CREATE TABLE `Employee` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(32) DEFAULT NULL, `departmentId` int DEFAULT NULL, `ManagerId` i 阅读全文
posted @ 2022-01-22 11:25 UsingStuding 阅读(47) 评论(0) 推荐(0)
摘要: 问题描述 数据SQL create table salary ( id int primary key auto_increment, employee_id int, amount int, pay_date date ); create table employee ( employee_id 阅读全文
posted @ 2022-01-22 10:48 UsingStuding 阅读(106) 评论(0) 推荐(0)