ElasticSerch查詢語句

2021-10-07 18:46:07 字數 1320 閱讀 2083

#新增索引庫

put /heima

#查詢索引庫

get /heima

#刪除索引庫

delete /heima

#新增文件

post /heima/_doc

#新增文件並指定id

post /heima/_doc/2

#檢視文件

get /heima/_doc/3

#修改文件

put /heima/_doc/1

put /heima/_doc/3

#刪除文件

delete /heima/_doc/3

#新增未對映的字段

post /heima/_doc/4

#索引庫的對映關係:

get /heima

#新增一條資料

post /heima3/_doc/1

#插入兩條資料

put /heima/_doc/5

put /heima/_doc/6

#查詢所有

get /heima/_search}}

#分詞查詢match

get /heima/_search}}

#精確查詢,小公尺和電視

get /heima/_search}}

}#fluzzy模糊查詢

get /heima/_search}}

}#範圍查詢

get /heima/_search}}

}#布林查詢

get /heima/_search

},

"must_not": 

}}

}

}#排序由

get /heima/_search

},「sort」: [}]

}get /heima/_search

},「highlight」: }}

}get /heima/_search

},「sort」: [}],

「from」:0,

「size」: 20

}#filter過濾

get /heima/_search},}

}]}}

}get /heima/_search

},「filter」: [}}

]}}}

#source 篩選

get /heima/_search}}

#指定includes和excludes

get /heima/_search

,「query」: }}

get /heima/_search

,「query」: }}

}

mysql show eng MySQL查詢語句

全查 1select from table name 表示查詢全部字段 from表示查詢哪一張表 查詢某個欄位的值 1select xx from table name xx表示要查詢的字段 3.查詢多個欄位的值 1select xx,yy from table name 注意 要查詢的字段與字段之...

Oracle Sql Server相關查詢語句

上週處理過 oracle sql server 資料庫相關資料,發現其實它們的 sql 查詢語句有些是不太一樣的,比如行列轉置和將查詢結果插入新錶。本人還是比較願意寫 sql 語句的,網際網路的技術日新月異,前端後端各種框架 新技術每擱幾年就得更新一遍,根本學不過來,而 sql 語句這些多卻少有變化...

怎麼查詢mysql的語法 MySQL查詢語法

select distinct productname from custom where product price between 5 and 10 order by product price desc product name limit 3 offset 1 limit 限定從1行開始選出...