我们如何在activejdbc中获得不同的rowcount?我尝试了很多不同的变化,但没有一个工作
Tablename.count("?", "distinct id")
Tablename.count("distinct ?", "id") //missing expression
Base.exec("select count(distinct id) from tablename") //return 1 always (probably the count)
答案 0 :(得分:0)
您使用的是错误的API。由于您正在选择,因此您需要使用Base.find...
方法中的任何一个,而不是Base.exec
,这是INSERT / UPDATE / DELETE。