Return the COUNT( ) SQL to calculate the number of records @param dbType @param catalog_tbl @return SQL for select count execution
(DatabaseType dbType, Table catalog_tbl)
| 431 | * @return SQL for select count execution |
| 432 | */ |
| 433 | public static String getCountSQL(DatabaseType dbType, Table catalog_tbl) { |
| 434 | return SQLUtil.getCountSQL(dbType, catalog_tbl, "*"); |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * Return the COUNT() SQL to calculate the number of records. Will use the col parameter as the |