gpt4 book ai didi

mysql - 如何在 ssp 简单类中使用 UNION ALL?

转载 作者:行者123 更新时间:2023-11-30 21:43:55 25 4
gpt4 key购买 nike

我想在 ssp2 简单类中使用下面的 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)

最佳答案

替换你的 joinQuery 而不是 $joinQuery = ' from table1 UNION ALL table2';

    $joinQuery  = ' from (SELECT * from `table1` ';
$joinQuery .= ' UNION ALL';
$joinQuery .= ' SELECT * from `table2` ) temp';

关于mysql - 如何在 ssp 简单类中使用 UNION ALL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50366030/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com