我有一个来自 MariaDB 视图的非常简单的查询:SELECT c.amount, c.discount FROM factors_view as cWHERE c.factor_id = 358当我在 HeidiSQL 中运行这个查询时,我得到了这个结果:amount = 16000, discount = 1200但是在 Laravel 5.7 原始查询中$result = \DB::select(" SELECT c.amount,c.discount FROM factors_view as c WHERE c.factor_id = 358");结果:amount = 16000, discount = 0当我将参数放在引号之间时:$result = \DB::select(" SELECT c.amount,c.discount FROM factors_view as c WHERE c.factor_id = '358'");结果:amount = 16000, discount = 1200c.factor_id 的类型是int(10) unsigned。这对我来说很奇怪;因为区别在于查询条件,而不是选择!输出是在特定列上具有零值的同一行!有谁知道发生了什么事?这是我对这两个查询的查询日志:1)query:"select `c`.`amount`, `c`.`discount` from `factors_view` as `c` where `c`.`factor_id` = ?"bindings:[0:358]2)query:"select `c`.`amount`, `c`.`discount` from `factors_view` as `c` where `c`.`factor_id` = ?"bindings:[0:"358"]
2 回答
千万里不及你
TA贡献1784条经验 获得超9个赞
最后,我找到了这个麻烦错误的原因。为了更正错误,我在视图中更改了 factor_id 的类型:
CAST(factor_id AS UNSIGNED) AS factor_id
它工作正常。
虽然错误已修复,但我仍然没有意识到这种行为。where 条件必须影响行,而不是单元格的值。这可能是一个学说/dbal 错误?!
喵喵时光机
TA贡献1846条经验 获得超7个赞
请提供SHOW CREATE TABLE。
我想那factor_id是VARCHAR应该的时候INT。
int_col = 123 -- can use index
int_col = '123' -- can use index
char_col = 123 -- 123 dominates; must check all rows, converting char_col to int
char_col = '123' -- can use index
- 2 回答
- 0 关注
- 148 浏览
添加回答
举报
0/150
提交
取消
