我想知道如果我在SELECT Ets_Se_Categorie AS Ets_Se_Categorie,COUNT(Ets_Se_Categorie) AS cpte
FROM TableV_MyTest
WHERE LEN(ISNULL(Ets_Se_Categorie, '')) <> 0
GROUP BY Ets_Se_Categorie
中打印出过滤参数的值会发生什么。是byebug
还是[FILTER]
还是the actual value
。
e.g。密码和信用卡字段
我收到空字符串,所以我不确定该值是否存在。
答案 0 :(得分:0)
在控制台中:
Parameters: {"utf8"=>"✓", "email"=>"test@ff.ff", "password"=>"[FILTERED]", "commit"=>"Sing in"}
使用byebug
:
(byebug) params
{"utf8"=>"✓", "email"=>"test@ff.ff", "password"=>"11111111", "commit"=>"Sing in", "action"=>"create", "controller"=>"sessions"}