sql查询中面临的问题

sql查询中面临的问题

本文介绍了sql查询中面临的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个表,它假设有三列

ID值1值2
1100 50
2 80 40
3 30 30
4 50 40

从表中选择ID,Value1,Value2,(Value1 + Value2)作为Value,其中Value> 100

我想编写上述sql查询,但出现错误

Here is a table and it has suppose three column

ID Value1 Value2
1 100 50
2 80 40
3 30 30
4 50 40

Select ID, Value1, Value2, (Value1+Value2) as Value from table where Value>100

I want to write the above sql query but getting error

Msg 207, Level 16, State 1, Line 1
Invalid column name ''Value''

推荐答案

Select ID, Value1, Value2, (Value1+Value2) as [Value] from table where (Value1+Value2)> 100


要查看保留关键字的列表,请参见以下MSDN文章:
http://msdn.microsoft.com/en-us/library/aa238507 (v = sql.80).aspx [ ^ ]


to see list of reserved keywords, see the following MSDN article:
http://msdn.microsoft.com/en-us/library/aa238507(v=sql.80).aspx[^]



这篇关于sql查询中面临的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 16:10