comments.sql

来自「关系型数据库 Postgresql 6.5.2」· SQL 代码 · 共 17 行

SQL
17
字号
---- Comments--SELECT 'trailing' AS first; -- trailing single lineSELECT /* embedded single line */ 'embedded' AS second;SELECT /* both embedded and trailing single line */ 'both' AS third; -- trailing single lineSELECT 'before multi-line' AS fourth;/* This is an example of SQL which should not execute: * select 'multi-line'; */SELECT 'after multi-line' AS fifth;/* and this is the end of the file */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?