Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/sql/71.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
什么是'@&燃气轮机';在这个Postgres sql代码片段中是什么意思?_Sql_Postgresql - Fatal编程技术网

什么是'@&燃气轮机';在这个Postgres sql代码片段中是什么意思?

什么是'@&燃气轮机';在这个Postgres sql代码片段中是什么意思?,sql,postgresql,Sql,Postgresql,我复制了一个Postrgres sql代码段,它正在工作,但我不明白where子句中的“@>”在做什么,似乎找不到引用 select my_column from my_table where earth_box( ll_to_earth(my_lat, my_lng), 2000) @> ll_to_earth(latitude, longitude); 该代码段来自。它基本上表示“包含”…因此从earth\u box函数返回的geom必须包含从ll\u

我复制了一个Postrgres sql代码段,它正在工作,但我不明白where子句中的“@>”在做什么,似乎找不到引用

select 
    my_column
from 
    my_table
where 
    earth_box( ll_to_earth(my_lat, my_lng), 2000) @> ll_to_earth(latitude, longitude);
该代码段来自。

它基本上表示“包含”…因此从earth\u box函数返回的geom必须包含从ll\u to\u earth函数返回的geom。 一匹没有名字链接的马拥有所有链接的列表

到目前为止,我只见过“单独”,但显然这意味着包含。

参见