问题一: sa = Topic.find_by_sql("SELECT * FROM ts_topic where user_id = :a order by id",{:a => 100}) 这样,为什么不能传参数
sa = Topic.find_by_sql("SELECT * FROM ts_topic where user_id = ? order by id",100) 用问号的方式,也不行啊
问号和占位符,都不行啊
问题二:
select distinct r_type from reply where uid=3 Reply.select('r_type').distinct().where('uid = ?',3) 这样为什么不行
请问,如何解决