I need to make this query faster and need some help.
The code is :
sqlFrom = "FROM tx_apartment_buy a where result_id" +
"not in (select result_id from tx_user_view2" +
"where product_type='apartmentBuy'" +
"and date_published>='"+yesterdayDate+"' and user_list like '%;"+uid +";%')";
if(StringUtility.isSet(userSql)) {
sqlFrom+=" AND "+userSql;
}
sqlFrom+=" and a.source=? order by batch_no desc," +
"a.date_created asc, a.order_no limit 0,15";
sql = "SELECT * " + sqlFrom;
insertSql = "INSERT INTO tx_user_view2 " +
"(result_id, date_created, product_type, user_list) " +
"SELECT result_id, SYSDATE(), '"+product+"', ';"+uid+";\r\n'" + sqlFrom;
insertSql += " ON DUPLICATE KEY UPDATE user_list = CONCAT(user_list, VALUES(user_list))";