SQL Server支持两种注释,一种是行注释,以”--“开头;另一种是块注释以‘/*'开
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server支持两种注释,一种是行注释,以”--“开头;另一种是块注释以‘/*'开相关的知识,希望对你有一定的参考价值。
在transact-sql中可使用两类注释符。
1、ansi
标准的注释符“--”
用于单行注释;
2、与c语言相同的程序注释符号,即“/**/”。“/*”用于注释文字的开头,“*/”用于注释文字的结尾,可在程序中标识多行文字为注释。 参考技术A 你是问题没写完么?
第一种,种是行注释,以”--“开头,这个肯定没问题;
另一种是块注释以‘/*'开…………,这个不知道后面是什么了。
SQL
Server确实支持两种注释,一种是行注释,一种是块注释,块注释是"/*
*/"中的所有信息,如果你题目剩下的内容是表示这个意思那就是正确的
希望以上答案能帮到你
问题008:java 中代码块的风格有几种?单行注释可否嵌套?多行注释可否嵌套?
有两种:一种是次行风格,英文称为next-line
一种是是行尾风格,英文称为 end-of-line
举例 行尾风格
public class HelloWorld{ public static void main(String[] args){ System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("(10.5+2*3)/(45-3.5)"); System.out.println((10.5+2*3)/(45-3.5)); } }
举例 次行风格
public class HelloWorld { public static void main(String[] args) { System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("(10.5+2*3)/(45-3.5)"); System.out.println((10.5+2*3)/(45-3.5)); } }
举例 混合风格 这种风格不可取,会造成很多混乱
public class HelloWorld{ public static void main(String[] args) { System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("HelloWorld!"); System.out.println("(10.5+2*3)/(45-3.5)"); System.out.println((10.5+2*3)/(45-3.5)); } }
单行注释可否嵌套?可以的 多行注释可否嵌套?不可以
以上是关于SQL Server支持两种注释,一种是行注释,以”--“开头;另一种是块注释以‘/*'开的主要内容,如果未能解决你的问题,请参考以下文章
问题008:java 中代码块的风格有几种?单行注释可否嵌套?多行注释可否嵌套?