|
public static void mutiplyParser(String table, String startDay, String endDay, String labelName) {
|
|
public static void mutiplyParser(String table, String startDay, String endDay, String labelName) {
|
|
- String sql = String.format("select * from %s apptype != '13' and dt >='%s' and dt <='%s';", table, startDay, endDay);
|
|
+ String sql = String.format("select * from %s where apptype != '13' and dt >='%s' and dt <='%s';", table, startDay, endDay);
|