pgsql=# -- Multiline comments
pgsql=# SELECT 'Multi' /* This comment extends across
pgsql*# * numberous lines, and can be
pgsql*# * /*nested safely */
pgsql*# Can you understand
pgsql*# * Now the end*/
pgsql-# || '-test' AS example;
example
------------
Multi-test
(1 row) pgsql=#
相关文章
- 10-28函数的嵌套
- 10-28虚拟树Demos\Minimal 简单的例子
- 10-28一些FORK函数的例子
- 10-28【Rust日报】 2019-05-30:使用最新的 async/await 的一些例子
- 10-28rust 大神crypto2的例子AES加解密
- 10-28面向对象的例子
- 10-28面向对象的例子
- 10-2819_多态应用以及引用类型转换的例子
- 10-28一个css属性选择器的实际例子
- 10-28在参数传递中,不分基本,引用数据类型。都是以值直接进行传递的。如下典型例子。