--books表中有字段有bId,pId等字段。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比雙鴨山網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式雙鴨山網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋雙鴨山地區(qū)。費用合理售后完善,十年實體公司更值得信賴。
--another有bId,pId等字段(create table another select bId,pid,bAuthor from books;--相關(guān)字段以及內(nèi)容來自books表)。
--books和publising建立外鍵,參照publishing中的id字段。
alter table books add constraint FK_books_publishing foreign key (pid) references publishing (id) on update cascade;
--another和publishing之間創(chuàng)建外鍵,參照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';
--當執(zhí)行這條語句時(更新publishing表),books表和another表同時進行更新。
--主表更新字段數(shù)據(jù)等,副表也隨之更新,從上面可以看出,主表是publishing,副表是books和another。
--希望能幫到你
直接查看表結(jié)構(gòu)就可以。方法如下: 1、以第三方軟件Navicat for Mysql為例,登錄指定的數(shù)據(jù)庫。 2、點擊上方圖標“查詢”——“新建查詢”。 3、彈出查詢窗口輸入“describe 表名”,這里表名以“test”為例,則寫為“describe test”(不含引號)
select A.* from A join B on A.F_id=B.F_id where B.amount5;
后面的判斷條件根據(jù)你自己的表來寫。
聯(lián)合查詢
select?userinfo.userinfoid,username,?userage??from?user?join?userinfo?on?user.userinfoid?=?userinfor.userinfoid