How to use ScalaQuery to build a query for count(*) sql?
When I programming with the ScalaQuery, how to build a "select count(*) from table" statement? I used a Query(TestTable.count) but the generated select statement is: select count(*) from (select column1 from TestTable t2) t1 I want the: select count(*) from TestTable sorry for my poor english. import org.scalaque...