comments.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- Comments
  3. --
  4. SELECT 'trailing' AS first; -- trailing single line
  5. SELECT /* embedded single line */ 'embedded' AS second;
  6. SELECT /* both embedded and trailing single line */ 'both' AS third; -- trailing single line
  7. SELECT 'before multi-line' AS fourth;
  8. /* This is an example of SQL which should not execute:
  9.  * select 'multi-line';
  10.  */
  11. SELECT 'after multi-line' AS fifth;
  12. /* and this is the end of the file */