扫码关注官方订阅号
一个database里有很多表,每个表都有一个相同的字段(比如'user'),如何获取所有表中'user'的值?
光阴似箭催人老,日月如移越少年。
select a.user, b.user, c.user from a, b, c
select table1.user from table1 union select table2.user from table1;
select a.user as usera, b.user as userb from...
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
select table1.user from table1 union select table2.user from table1;