你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
wenjoe - 苦逼屌丝男
赞同来自:
ilangge
要回复问题请先登录或注册
90后IT男
2 个回复
wenjoe - 苦逼屌丝男
赞同来自:
ilangge
赞同来自:
https://github.com/NLPchina/elasticsearch-sql
你值得拥有。
比如:
select title,contents,rq from tax9cn/t12366 where (contents like '%回租%') or (contents like '%返租%')
解析成:
{
"from": 0,
"size": 200,
"query": {
"bool": {
"must": {
"bool": {
"should": [
{
"wildcard": {
"contents": "*回租*"
}
},
{
"wildcard": {
"contents": "*返租*"
}
}
]
}
}
}
},
"_source": {
"includes": [
"title",
"contents",
"rq"
],
"excludes": []
}
}