where_properties function 和 like 关键字一起在 ahoy
where_properties function and like keyword together in ahoy
是否可以同时使用 LIKE 关键字和 where_properties 函数或类似的东西。因为我需要创建这样的查询。
Ahoy::Event.where(name: "$click").where_properties("'href' LIKE '%#{brochure.id}%'").count.size
请试试这个:
Ahoy::Event.where(name: "$click").where("properties ->> :key LIKE :value", key: "href", value: "%#{brochure.id}%").size
修复查询现在按预期工作。
是否可以同时使用 LIKE 关键字和 where_properties 函数或类似的东西。因为我需要创建这样的查询。
Ahoy::Event.where(name: "$click").where_properties("'href' LIKE '%#{brochure.id}%'").count.size
请试试这个:
Ahoy::Event.where(name: "$click").where("properties ->> :key LIKE :value", key: "href", value: "%#{brochure.id}%").size
修复查询现在按预期工作。