作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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/
我是一名优秀的程序员,十分优秀!