返回 account_number | 学习笔记

简介: 快速学习返回 account_number

开发者学堂课程【ElasticSearch 入门精讲返回 account_number学习笔记,与课程紧密连接,让用户快速学习知识。

课程地址https://developer.aliyun.com/learning/course/631/detail/10022


返回 account_number


内容介绍:

一、讲义

二、演示


一、讲义

match 查询,可以作为基本字段搜索查询

返回 account_number=20:

curl -XPOST 'localhost:9200/bank/_search?pretty'-d

'{

"query": {"match": ("account_number":20}},

返回 address=mill :

curl -XPOST 'localhost:9200/bank/search?pretty' -d

'{

"query": {"match": {"address":"mill"}},

}'

返回 address=mill or address=lane

curl -XPOST 'localhost:9200/bank/search?pretty' -d

'{

"query": {"match": {"address":"mill lane"}},

}'

返回短语匹配 address=mill lane

curl -XPOST 'localhost:9200/bank/_search?pretty'  -d

'{

"query": {"match_phrase": {"address":"mill lane"}},

}'

二、演示

(1)输入

{

“query”: {

“match” : {

“account_number”: 20

}

},

“_source”: [

“_score”,

“balance”

“account_number”

],

“sort”: {

“balance” : {

“order” : “desc”

}

显示如图

image.png

如果我们想查询所有的字段,删去 source 部分

{

“query”: {

“match” : {

“account_number”: 20

}

 },

“sort”: {

“balance” : {

“order” : “desc”

}

(2)输入

{

“query”: {

“match” : {

“address”: “mill”

}

},

“sort”: {

“balance” : {

“order” : “desc”

}

显示如图

image.png

(3)输入

{

“query”: {

“match” : {

“address”: “mill lane”

}

},

“sort”: {

“balance” : {

“order” : “desc”

}

显示如图

image.png

当最后输入

“size” : 200

显示如图

image.png

再输入

“_source”: [

“balance”,

“account_number”

]

显示如图

image.png

相关文章
sign check fail:check Sign and Data Fail报错攻略
错误码: com.alipay.api.AlipayApiException: sign check fail: check Sign and ​Fail            报错原因:验签失败 ,未使用正确的支付宝公钥     在新版接口的调用过程中,常常出现此报错。
4905 12
|
7月前
|
监控 前端开发 Serverless
函数计算操作报错合集之遇到报错:{"ErrorCode":"ResourceThrottled","ErrorMessage":"Reserve resource exceeded limit"},该如何处理
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
112 0
|
5月前
|
SQL XML Java
Invalid bound statement (not found): com.zheng.mapper.UserMapper.login
这篇文章解释了MyBatis中接口与Mapper配置文件映射绑定失败的原因,并提供了解决步骤,包括确保Mapper.xml文件的namespace与Mapper接口的类路径相同,接口方法名与XML中定义的statement id相同,以及接口方法的输入输出参数类型与Mapper.xml中定义的sql的parameterType和resultType类型匹配。
Invalid bound statement (not found): com.zheng.mapper.UserMapper.login
|
7月前
|
监控 Serverless 文件存储
函数计算操作报错合集之显示的错误信息 "Reserve resource exceeded limit",一般是什么导致的
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
7月前
|
监控 网络协议 Serverless
函数计算操作报错合集之遇到报错:{"ErrorCode":"ResourceThrottled","ErrorMessage":"Reserve resource exceeded limit"}该如何处理
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
SQL
Parameter ‘id‘ not found. Available parameters are [collection, list]
Parameter ‘id‘ not found. Available parameters are [collection, list]
258 0
|
人工智能 自然语言处理 语音技术
Invalid prop: type check failed for prop “index“. Expected String with value “5“问题解决
Invalid prop: type check failed for prop “index“. Expected String with value “5“问题解决
155 0
|
JavaScript
vue 渲染列表报错Avoid using non-primitive value as key, use string/number value instead. found in
vue 渲染列表报错Avoid using non-primitive value as key, use string/number value instead. found in
126 0
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
334 0
|
存储
Number 类型:
Number 类型:
125 1