我有一个像这样的查询:
Select COUNT(*) from tblAnswerType where AnswerType = 'RadioButton'
它显示33的结果,但在答案中没有指定列名。我想指定一个列名,例如:RadioButton / RDB。
我怎样才能实现它?
答案 0 :(得分:0)
您可以在[]
之间命名Select COUNT(*) AS [RadioButton/RDB]
from tblAnswerType
where AnswerType = 'RadioButton'