真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Mysql數(shù)據(jù)表怎么打8折 macbook窗口快捷鍵

數(shù)據(jù)庫中原價格八折條件設(shè)置?

alter table 表名 add column ‘折扣’float(8,4);

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的調(diào)兵山網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

update 表名 (‘折扣’)set ‘折扣’=原價*80%;

創(chuàng)建一個存儲過程,將Northwinds數(shù)據(jù)庫中Products表中價格全部打8折(會用到游標(biāo))

假如Products表中id是主鍵

創(chuàng)建測試表及測試數(shù)據(jù)

create?table?Products

(id?int?primary?key,

price?int)?

insert?into?Products?values?(1,100)

insert?into?Products?values?(2,200)

創(chuàng)建存儲過程

create?procedure?p_products

as

declare?@id?int

declare?c_pro?cursor??for

select?id?from?Products

open?c_pro

fetch?next?from?c_pro?into?@id

while?@@fetch_status?=?0

begin

update?Products?set?price=price*0.8?where?id=@id

fetch?next?from?c_pro?into?@id

end

close?c_pro

deallocate?c_pro

執(zhí)行存儲過程

exec?p_products

執(zhí)行后表內(nèi)數(shù)據(jù)

excel表中一例數(shù)據(jù)如何計算出8折的數(shù)據(jù)

如圖:在另一列輸入“=然后選取你需要列的第一行*0.8”,確定。下拉復(fù)制


網(wǎng)站標(biāo)題:Mysql數(shù)據(jù)表怎么打8折 macbook窗口快捷鍵
URL網(wǎng)址:http://weahome.cn/article/ddoicee.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部