📄 gouwuche.sql
字号:
insert into ShopCart
( BookID,BookName,BookMarketPrice,BookPrice,ShopDate,IsCanel,UserID)
select BookID,BookName,BookMarketPrice,BookPrice ,GETDATE(),0,UserID
from Books,Users where UserID=1 and BookID= 3
update ShopCart set BookCount=BookCount+1,MoneyCount=BookPrice*(BookCount+1),IsCanel='0' where UserID=1 and BookID=1
select * from ShopCart where UserID=1 and BookID=1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -