$scheduler->render_sql("select * from datatable INNER JOIN tablestr ON FIND_IN_SET(tablestr.str_id , datatable.str_id) ",“id”,“start_time,end_time,name,section_id,color,GROUP_CONCAT(t_no) t_no”);
This executing without error but my generated sql is showing
“<t_no) t_n></t_no) t_n>”
Result is not displaying properly.Why group_concat() is not executing.
You can try to use render_complex_sql instead of render_sql and move GROUP instruction in the SQL select code ( connector doesn’t expect to have anything except of names in the list of id fields )
Run the app again and some.txt will contain the exact sql code and detailed error info in case of server side error. Check the auto-generated sql, is it valid for your data or not.