Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_pg
提交
d3fd2d02
S
skill_tree_pg
项目概览
CSDN 技术社区
/
skill_tree_pg
通知
9
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_pg
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d3fd2d02
编写于
11月 24, 2021
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
makeup exercises
上级
8421dbfa
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
89 addition
and
5 deletion
+89
-5
data/2.PostgreSQL中阶/2.服务端编程/7.DDL/config.json
data/2.PostgreSQL中阶/2.服务端编程/7.DDL/config.json
+2
-1
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/config.json
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/config.json
+3
-2
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.json
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.json
+8
-0
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.md
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.md
+67
-0
data/tree.json
data/tree.json
+9
-2
未找到文件。
data/2.PostgreSQL中阶/2.服务端编程/7.DDL/config.json
浏览文件 @
d3fd2d02
...
...
@@ -4,6 +4,6 @@
"children"
:
[],
"export"
:
[
"create_table.json"
,
"an
yl
ze.json"
"an
aly
ze.json"
]
}
\ No newline at end of file
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/config.json
浏览文件 @
d3fd2d02
{
"node_id"
:
"pg-3bbe12c0a19d4cb7a61dc0a20624ed89"
,
"keywords"
:
[],
"keywords"
:
[
"gis"
,
"地理信息"
],
"children"
:
[],
"export"
:
[]
"export"
:
[
"gis.json"
]
}
\ No newline at end of file
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.json
0 → 100644
浏览文件 @
d3fd2d02
{
"type"
:
"code_options"
,
"author"
:
"刘鑫"
,
"source"
:
"gis.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"88b033cd97c642ef9900e5e091e335ff"
}
\ No newline at end of file
data/3.PostgreSQL高阶/2.高级数据类型/1.几何类型和GIS/gis.md
0 → 100644
浏览文件 @
d3fd2d02
# 邻近查找
我们有一个简化的表结构如下:
```
postgresql
create table city
(
id serial8,
city text,
poi point
);
create index idx_tbl_point on city using gist (poi) with (buffering = on);
```
要查找给定的点位于哪个城市,或者离哪个城市最近,应该是下列哪一项?
## 答案
```
postgresql
select city, poi <-> point($1, $2) dist
from city
where poi <-> point($1, $2) < 100
order by poi <-> point($1, $2)
limit 1;
```
## 选项
### A
```
postgresql
select city, poi <-> point($1, $2) dist
from city
where poi <-> point($1, $2) < 100
order by poi <-> point($1, $2) desc
limit 1;
```
### B
```
postgresql
select *, poi <-> point($1, $2) dist
from city
where poi <-> point($1, $2) < 100
limit 1;
```
### C
```
postgresql
select *, poi - point($1, $2) dist
from city
where poi - point($1, $2) < 100
order by poi - point($1, $2)
limit 1;
```
### D
```
postgresql
select *, abs(poi - point($1, $2)) dist
from city
where abs(poi - point($1, $2)) < 100
order by abs(poi - point($1, $2))
limit 1;
```
\ No newline at end of file
data/tree.json
浏览文件 @
d3fd2d02
...
...
@@ -211,7 +211,11 @@
{
"DDL"
:
{
"node_id"
:
"pg-0378bcd60ccd4dfebcfead92abbdd673"
,
"keywords"
:
[],
"keywords"
:
[
"创建表"
,
"授权"
,
"ddl"
],
"children"
:
[]
}
}
...
...
@@ -263,7 +267,10 @@
{
"几何类型和GIS"
:
{
"node_id"
:
"pg-3bbe12c0a19d4cb7a61dc0a20624ed89"
,
"keywords"
:
[],
"keywords"
:
[
"gis"
,
"地理信息"
],
"children"
:
[]
}
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录