mysql查询(建立人力资源系统数据库)

如下是在mysql 环境下进行操做: -- 建立人力资源管理系统数据库 drop database if exists HRS; create database HRS default charset utf8; -- 切换数据库上下文环境 use HRS; -- 删除表 drop table if exists TbEmp; drop table if exists TbDept; -- 建立部
相关文章
相关标签/搜索