环境:SQLServer 2008 R2
问题:不清楚SQLServer 里的注释用法。
解决:
单行注释:--
多行注释:/*......*/
使用示例:
单行注释:
-选择列表中的列 'Student.sname' 无效,因为该列没有包含在聚合函数或 GROUP BY 子句中。
SELECT Student.sno,sname,AVG(grade) AS avg_g
FROM Student,SC www.jb51.net
WHERE Student.sno=SC.sno AND cno
一、python单行注释符号(#)
python中单行注释采用 #开头
示例:#this is a comment
二、批量、多行注释符号
多行注释是用三引号”’ ”’包含的,例如:
三、python中文注释方法
今天写脚本的时候,运行报错:
SyntaxError: Non-ASCII character '\xe4' in file getoptTest.py on line 14, but no encoding declared; see http://www.python.org/