How do we get distinct rowcount in activejdbc? I tried many different variations but none of them worked
Tablename.count("?", "distinct id")
Tablename.count("distinct ?", "id") //missing expression
Base.exec("select count(distinct id) from tablename") //return 1 always (probably the count)