gpt4 book ai didi

mysql - Sequelize - 不区分大小写,例如

转载 作者:可可西里 更新时间:2023-11-01 06:31:46 26 4
gpt4 key购买 nike

我如何在 Sequelize 中实现这一点?

SELECT * FROM table where lower(column) LIKE ('abcd%');

我找不到将 lower 函数与 $like 混合的方法

最佳答案

你应该使用 Sequelize.Op :

Table.findAll({
where: {
name: {
[Sequelize.Op.iLike]: searchQuery
}
}
})

如果您想进行部分查询,请不要忘记在 searchQuery 之前或之后添加 %。

See the docs here

关于mysql - Sequelize - 不区分大小写,例如,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41728023/

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