參考一下:
成都創(chuàng)新互聯(lián)成立與2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元薛城做網(wǎng)站,已為上家服務(wù),為薛城各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108
有兩表,hctotaltmp(總表),hctotalout(出庫(kù)表),字段分別為catalogue,hc,number。現(xiàn)已實(shí)現(xiàn)php前臺(tái)顯示出剩余的各數(shù)量。但是如何同時(shí)顯示在總表中,但未出庫(kù)的數(shù)量。
$sql = "SELECT hctotaltmp.catalogue,hctotaltmp.hc, hctotaltmp.number - ifnull(hctotalout.number, 0)
FROM
hctotalout
LEFT JOIN hctotaltmp ON hctotalout.hc = hctotaltmp.hc
GROUP BY
hc DESC
ORDER BY
catalogue DESC ";
這樣的話,只能存在于hctotalout表里面的數(shù)據(jù)才會(huì)顯示出來。我想把所有的都顯示出來,沒出庫(kù)的數(shù)量就顯示為總表中的數(shù)量,出庫(kù)的話就是總表數(shù)量減出庫(kù)表對(duì)應(yīng)字段的數(shù)量。
delimiter //
create trigger trigger1 after update on B for each row
begin
declare sl int;
set sl=NEW.退貨數(shù)量;
update A set 數(shù)量=數(shù)量-sl;
end //
UPDATE
A
SET
A.數(shù)量 = A.數(shù)量 - B.退貨數(shù)量
FROM
A JOIN B
ON (A.物料編號(hào) = B.物料編號(hào));
上面這種2表關(guān)聯(lián)更新寫法
對(duì)于 A 表 與 B 表, 是 1對(duì)1 的情況下, 是沒有問題的。
對(duì)于 A 表與 B 表, 是 1對(duì)多的情況下, 就沒有測(cè)試過了。
select Aa.Aamount -B.stock , B.bookid from (select sum(A.amount) as Aamount , A.bookid from group by A.bookid ) Aa inner join B on Aa.bookid =B.bookid
上述用的是sql2000 的語法。但都類似。
工具/材料:Management Studio。
1、首先在桌面上,點(diǎn)擊“Management Studio”圖標(biāo)。
2、之后在該界面中,點(diǎn)擊左上角“新建查詢”選項(xiàng)。
3、接著在該界面中,輸入兩個(gè)查詢結(jié)果運(yùn)算減的sql語句“SELECT myLGMaterialStock.CountA - myXGMaterialStock.InitCountA FROM myLGMaterialStock left join myXGMaterialStock on myLGMaterialStock.ID= myXGMaterialStock.ID”。
4、然后在該界面中,點(diǎn)擊左上方“執(zhí)行”按鈕。
5、最后在該界面中,顯示兩個(gè)查詢結(jié)果運(yùn)算減結(jié)果。
oracle:
[TEST1@orcl#19-4月 -10] SQLselect * from a;
SNO CON
---------- ----------
1 1
1 2
1 3
2 1
2 2
2 3
已選擇6行。
[TEST1@orcl#19-4月 -10] SQLselect * from b;
SNO CON
---------- ----------
1 1
1 2
2 2
2 3
[TEST1@orcl#19-4月 -10] SQLselect * from a minus select * from b;
SNO CON
---------- ----------
1 3
2 1
mmysql:
select * from a where (sno,con) not in (select sno,con from b);
看看這個(gè) 或許對(duì)你有所幫助