猿问

当参数作为整数传递时,Laravel 返回零而不是实际的单元格值

我有一个来自 MariaDB 视图的非常简单的查询:


SELECT c.amount, c.discount 

FROM factors_view as c

WHERE 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 = 1200


c.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"]


元芳怎么了
浏览 149回答 2
2回答

千万里不及你

最后,我找到了这个麻烦错误的原因。为了更正错误,我在视图中更改了 factor_id 的类型:CAST(factor_id AS UNSIGNED) AS factor_id它工作正常。虽然错误已修复,但我仍然没有意识到这种行为。where 条件必须影响行,而不是单元格的值。这可能是一个学说/dbal 错误?!

喵喵时光机

请提供SHOW CREATE TABLE。我想那factor_id是VARCHAR应该的时候INT。int_col = 123     -- can use indexint_col = '123'   -- can use indexchar_col = 123    -- 123 dominates; must check all rows, converting char_col to intchar_col = '123'  -- can use index
随时随地看视频慕课网APP
我要回答