@@ -69,7 +69,7 @@ public class OfflineShareSamplesLoader {
// 主处理逻辑
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);
TunnelRecordReader reader = FeatureConstructor.loadDataFromOSSSession(sql);
Record record;
try {