9
如何在SQL查詢中轉義'@'查詢。在SQL查詢/ ActiveRecord中轉義'@'字符
我正在使用ActiveRecord(3)。
suite_scenarios = Scenario.where(suite_id: suite_id)
tag_pair = ["@regression","@daily_feature"]
tag_pair_scenarios = suite_scenarios.where("metadata LIKE '%#{tag_pair[0]}%'").where("metadata LIKE '%#{tag_pair[1]}%'")