微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PostgreSQL 常用函数

http://PHP.net/manual/zh/ref.pgsql.PHP





注释

Note:

Not all functions are supported by all builds. It depends on your libpq (The Postgresql C client library) version and how libpq is compiled. If PHP Postgresql extensions are missing,then it is because your libpq version does not support them.

Note:

Most Postgresql functions acceptconnectionas the optional first parameter. If it is not provided,the last opened connection is used. If it doesn't exist,functions returnFALSE.

Note:

Postgresql automatically folds all identifiers (e.g. table/column names) to lower-case values at object creation time and at query time. To force the use of mixed or upper case identifiers,you must escape the identifier using double quotes ("").

Note:

Postgresql does not have special commands for fetching database schema information (eg. all the tables in the current database). Instead,there is a standard schema namedinformation_schemain Postgresql 7.4 and above containing system views with all the necessary information,in an easily queryable form. See the»PostgreSQL Documentationfor full details.

Table of Contents

原文地址:https://www.jb51.cc/postgresql/196090.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐