大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
--books表中有字段有bId,pId等字段。
创新互联公司-专业网站定制、快速模板网站建设、高性价比双鸭山网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式双鸭山网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖双鸭山地区。费用合理售后完善,十年实体公司更值得信赖。
--another有bId,pId等字段(create table another select bId,pid,bAuthor from books;--相关字段以及内容来自books表)。
--books和publising建立外键,参照publishing中的id字段。
alter table books add constraint FK_books_publishing foreign key (pid) references publishing (id) on update cascade;
--another和publishing之间创建外键,参照publishing中的id字段。
alter table another add constraint FK_another_publishing foreign key (pId) references publishing (id) on update cascade;
--举个简单的更新列子:
update publishing set id = 17,pname = '爱好者' where id='14';
--当执行这条语句时(更新publishing表),books表和another表同时进行更新。
--主表更新字段数据等,副表也随之更新,从上面可以看出,主表是publishing,副表是books和another。
--希望能帮到你
直接查看表结构就可以。方法如下: 1、以第三方软件Navicat for Mysql为例,登录指定的数据库。 2、点击上方图标“查询”——“新建查询”。 3、弹出查询窗口输入“describe 表名”,这里表名以“test”为例,则写为“describe test”(不含引号)
select A.* from A join B on A.F_id=B.F_id where B.amount5;
后面的判断条件根据你自己的表来写。
联合查询
select userinfo.userinfoid,username, userage from user join userinfo on user.userinfoid = userinfor.userinfoid