gpt4 book ai didi

mysql - 环回 4 : How to query an array of objects

转载 作者:行者123 更新时间:2023-12-03 16:32:29 24 4
gpt4 key购买 nike

我一直无法根据对象数组中的属性查询对象。
我正在尝试查询具有 ID 为 7 的事件的所有订单:

  const orders = await this.orderRepository.find({where: {events: {elemMatch: {'id': event.id}}}});
以上给了我以下错误:
 ER_PARSE_ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''{\"id\":\"7\"}
如果我尝试以下过滤器,我总是会得到一个空数组:
{where: {events: {like: '%id%'}}}
Loopback 4 的正确方法是什么?
更新:
我正在使用 MySQL 8.0。
这是我的订单模型中事件的定义:
@property({
type: 'array',
itemType: 'object',
required: false,
})
events: CartItem[] | null;

最佳答案

解决方案
由于您使用的是 MySQL 回环连接器连接到您的 MySQL数据库,目前此连接器同时处理 String/JSONVARCHAR .因此,您可以尝试以下修改来喜欢


{where: {events: {like: '%id:'+7+'%'}}}
或者
const orders = await this.orderRepository.find({
where: {
events: {
like: '%id:'+event.id+'%'
}
}
});
或使用正则表达式
const orders = await this.orderRepository.find({
where: {
events: {
regexp: '.*id:'+event.id+'.*'
}
}
});
const orders = await this.orderRepository.find({
where: {
events: {
regexp: new RegExp(".*id:"+event.id+".*")
}
}
});
试图匹配 json图案 { id:7 ,name:'Event 7'}在这种情况下,其中的值 id可能是 7 .
假设
根据您的问题和显示的 mysql 错误,做出以下假设:
架构 (MySQL v5.7)
create table samples(id int primary key auto_increment, events varchar(400));
insert into samples(events) values 
('[{id:3,name:\"Boscobel\"},{id:4,name:\"Rays\"}]'),
('[{id:7,name:\"Boscobel 7\"},{id:8,name:\"Rays 8\"}]');

应该收到结果
查询 #1
select * from samples where events like '%id\:7%';
| id  | events                                          |
| --- | ----------------------------------------------- |
| 2 | [{id:7,name:"Boscobel 7"},{id:8,name:"Rays 8"}] |

查询 #2
select * from samples where events like '%id:7%';
| id  | events                                          |
| --- | ----------------------------------------------- |
| 2 | [{id:7,name:"Boscobel 7"},{id:8,name:"Rays 8"}] |

不应该收到结果
查询 #3
select * from samples where events like '%id\:70%';
没有要显示的结果。

查询 #4
select * from samples where events like '%id:200%';
没有要显示的结果。

View on DB Fiddle

关于mysql - 环回 4 : How to query an array of objects,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64292521/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com