xmlcomment()
是一个生成 XML 注释的系统函数。
xmlcomment()
添加于 PostgreSQL 8.3。
示例
xmlcomment()
的基本用法示例
postgres=# SELECT xmlcomment('foo'); xmlcomment ------------ <!--foo--> (1 row)
无效输入字符串示例
postgres=# SELECT xmlcomment('--foo'); ERROR: invalid XML comment postgres=# SELECT xmlcomment('foo--bar'); ERROR: invalid XML comment postgres=# SELECT xmlcomment('foo-'); ERROR: invalid XML comment
参考文献
- PostgreSQL 文档: Xmlcomment