mongodb - 操作Json類型的問題
给我你的怀抱
给我你的怀抱 2017-05-31 10:35:19
0
2
688

mongodb中有一個Documents:

{
   "_id" : ObjectId("54c955492b7c8eb21818bd09"),
   "address" : {
      "street" : "2 Avenue",
      "zipcode" : "10075",
      "building" : "1480",
      "coord" : [ -73.9557413, 40.7720266 ]
   },
   "borough" : "Manhattan",
   "cuisine" : "Italian",
   "grades" : [
      {
         "date" : ISODate("2014-10-01T00:00:00Z"),
         "grade" : "A",
         "score" : 11
      },
      {
         "date" : ISODate("2014-01-16T00:00:00Z"),
         "grade" : "B",
         "score" : 17
      }
   ],
   "name" : "Vella",
   "restaurant_id" : "41704620"
}

我把它放到Greenplum中分析,用Json類型儲存。

create table restaurant(restau json);

一些簡單的查詢可以用;

select restau from restaurant where restau-> restaurant_id='41704620';

但是,

select restau from restaurant where restau-> address -> zipcode ='10075';

這樣為什麼不行?報語法錯誤。

给我你的怀抱
给我你的怀抱

全部回覆(2)
大家讲道理

建議給出語法錯誤,

刘奇

用的 GP 的那個版本?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板