ssp 심플 클래스에서 UNION ALL을 사용하는 방법? ssp2 simple class에서 아래 SQL 쿼리를 사용하고 싶습니다. select * from table1 UNION ALL select * from table2 나는 아래 쿼리를 시도했습니다.ssp::simple class하지만 작동하지 않습니다. $table =''; $joinQuery = ' from table1 UNION ALL table2'; return Ssp::simple($_POST, $this->sql_details, $table, $primaryKey, $columns, $joinQuery, $filterQuery, null, null, null); 참고: 사용하고 있습니다.Xampp 5.6.24(MariaDB)$joinQ..