大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说2020python练习——表的关系,希望您对编程的造诣更进一步.
@2020.5.5
练习:账号信息表,用户组,主机表,主机组
#用户表 create table user( id int not null unique auto_increment, username varchar(20) not null, password varchar(50) not null, primary key(username,password) ); #用户组表 create table usergroup( id int primary key auto_increment, groupname varchar(20) not null unique ); #主机表 create table host( id int primary key auto_increment, ip char(15) not null unique default "127.0.0.1" ); #业务线表 create table business( id int primary key auto_increment, business varchar(20) not null unique ); #建关系:user与usergroup create table user2usergroup( id int not null unique auto_increment, user_id int not null, group_id int not null, primary key(user_id,group_id), foreign key(user_id) references user(id), foreign key(group_id) references usergroup(id) ); #建关系:host与business create table host2business( id int not null unique auto_increment, host_id int not null, business_id int not null, primary key(host_id,business_id), foreign key(host_id) references host(id), foreign key(business_id) references business(id) ); #建关系:user与host create table user2host( id int not null unique auto_increment, user_id int not null, host_id int not null, primary key(user_id,host_id), foreign key(user_id) references user(id), foreign key(host_id) references host(id) );
代码100分
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/8620.html