I am trying to join TABLE_1 and TABLE_2, I need to use every one of these fields in my HTML table. I am getting an error about my FROM clause, but I believe there are more errors involved.
"SELECT "
+ "TABLE_1.id, "
+ "TABLE_1.date, "
+ "TABLE_1.location, "
+ "TABLE_1.name, "
+ "TABLE_1.status "
+ "TABLE_2.date, "
+ "TABLE_2.location, "
+ "TABLE_2.name, "
+ "TABLE_2.type "
+ "FROM SCHEMA_1.TABLE_1 JOIN SCHEMA_1.TABLE_2 "
+ "WHERE TABLE_1.id = TABLE_2.id "
+ "AND add_user = ?");
Try this, instead: