首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

|M| Sql查询计算数据 求方法解决方法

2012-01-12 
|M| Sql查询计算数据求方法tableidappleapplecountorangeorangecount1152105查出表格式如下idappleappleco

|M| Sql查询计算数据 求方法
table  
id     apple   applecount   orange   orangecount
1             15                     2           10                       5

查出表格式如下

id     apple   applecount   orange   orangecount     tatil
1             15                     2           10                       5           80

谢谢

[解决办法]
select id,apple, applecount, orange, orangecount,(apple * applecount + orange * orangecount) as tatil from table

热点排行