Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e336635c
Commit
e336635c
authored
May 16, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Chinese FAQ to xhtml.
parent
7e94998c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
755 additions
and
829 deletions
+755
-829
doc/FAQ_chinese
doc/FAQ_chinese
+4
-11
doc/src/FAQ/FAQ_chinese.html
doc/src/FAQ/FAQ_chinese.html
+751
-818
No files found.
doc/FAQ_chinese
View file @
e336635c
...
@@ -88,11 +88,8 @@
...
@@ -88,11 +88,8 @@
4.22) 为什么使用 IN 的子查询这么慢?
4.22) 为什么使用 IN 的子查询这么慢?
4.23) 如何进行 outer join (外连接)?
4.23) 如何进行 outer join (外连接)?
4.24) 如何使用涉及多个数据库的查询?
4.24) 如何使用涉及多个数据库的查询?
4.25) 如何让函数返回多行或多列?
4.25) 如何让函数返回多行或多列?
4.26) 为什么在 PL/PgSQL 函数中不能可靠地创建或删除临时表?
4.26) 为什么在 PL/PgSQL 函数中不能可靠地创建或删除临时表?
4.27) 有哪些数据复制选项?
4.27) 有哪些数据复制选项?
4.28) 有哪些数据加密选项?
4.28) 有哪些数据加密选项?
...
@@ -702,17 +699,13 @@
...
@@ -702,17 +699,13 @@
当使用通配符操作,例如 LIKE 或 ~ 时,索引只能在特定的情况下使用:
当使用通配符操作,例如 LIKE 或 ~ 时,索引只能在特定的情况下使用:
* 字符串的开始部分必须是普通字符串,也就是说:
* 字符串的开始部分必须是普通字符串,也就是说:
* LIKE 模式不能以 % 打头。
* LIKE 模式不能以 % 打头。
* ~ (正则表达式)模式必须以 ^ 打头。
* ~ (正则表达式)模式必须以 ^ 打头。
* 字符串不能以匹配多个字符的模式类打头,例如 [a-e]。
* 大小写无关的查找,如 ILIKE 和 ~* 等不使用索引。但可以用 4.12
节描述的函数索引。
* 在做 initdb 时必须采用缺省的本地设置 C locale。
字符串不能以匹配多个字符的模式类打头,例如 [a-e]。
大小写无关的查找,如 ILIKE 和 ~* 等不使用索引。但可以用 4.12
节描述的函数索引。
在做 initdb 时必须采用缺省的本地设置 C locale。
4.9) 我如何才能看到查询优化器是怎样处理我的查询的?
4.9) 我如何才能看到查询优化器是怎样处理我的查询的?
参考 EXPLAIN 手册页。
参考 EXPLAIN 手册页。
...
...
doc/src/FAQ/FAQ_chinese.html
View file @
e336635c
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment