智慧社区商超管理系统作业
2018-11-04 本文已影响0人
b1b88051e065
1.智慧社区商超管理系统er图:
智慧社区商超管理系统作业2、将ER模型转换成数据表,并指出每个数据表的主键:
登陆数据库
create database landing
create table UsetTable
(
UserName varchar(20) primary key,
ciper varchar(20) not null,
UserType varchar(20) not null
)
insert into UsetTable
values ('admin','123456','收银人员'),
('hello','123456','管理员')
select * from UsetTable