我的问题是我希望得到一个用于PHP的查询mysql来选择3个不同列中的所有数据,这些列由名称相同的字段排序(在我的例子中,是'数据'字段) 。我的目标是以此特定顺序打印所有行,而不是在另一行的行之后打印所有行。有人能为我提供正确的方式吗?
一个例子: 我有四张桌子:
users_type1(**id**, name, surname, registration_date),
users_type2(**id**, town, school, registration_date),
users_type3(**id**, business, town, registration_date),
users_type4(**id**, age, school, registration_date)
因此,我的目标是在注册日期之前打印所有此用户订单的名称。
答案 0 :(得分:1)
好的,我会对此采取行动。我不是肯定的,我理解你的问题,但让我们看看。我想你在这里想要的是你的查询中的union语句。
给出以下测试表:
CREATE TABLE `users_type1` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`registration_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
CREATE TABLE `users_type2` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`school` varchar(255) DEFAULT NULL,
`registration_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
CREATE TABLE `users_type3` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`business` varchar(255) DEFAULT NULL,
`registration_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
CREATE TABLE `users_type4` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`age` varchar(255) DEFAULT NULL,
`registration_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
然后插入以下测试数据:
INSERT INTO users_type1(name) VALUES ("Bob");
INSERT INTO users_type2(business) VALUES ("Wendy's");
INSERT INTO users_type3(business) VALUES ("Wendy's");
INSERT INTO users_type2(school) VALUES ("LSU");
INSERT INTO users_type4(age) VALUES ("61");
INSERT INTO users_type3(business) VALUES ("IBM");
INSERT INTO users_type3(business) VALUES ("Apple");
INSERT INTO users_type4(age) VALUES ("23");
INSERT INTO users_type4(age) VALUES ("29");
INSERT INTO users_type2(school) VALUES ("Penn State");
INSERT INTO users_type1(name) VALUES ("Amanda");
INSERT INTO users_type1(name) VALUES ("Amir");
INSERT INTO users_type2(school) VALUES ("Ohio State");
INSERT INTO users_type4(age) VALUES ("41");
INSERT INTO users_type2(school) VALUES ("UC Berkley");
我可以使用这个select(注意union语句中的FIRST select确定最终结果中的列名是什么):
(SELECT id, name AS data, registration_date FROM users_type1)
UNION
(SELECT id, school, registration_date FROM users_type2)
UNION
(SELECT id, business, registration_date FROM users_type3)
UNION
(SELECT id, age, registration_date FROM users_type4)
ORDER BY registration_date;
结果是:
+----+------------+---------------------+
| id | data | registration_date |
+----+------------+---------------------+
| 1 | Bob | 2014-04-12 15:48:30 |
| 1 | Wendy's | 2014-04-12 15:48:52 |
| 1 | LSU | 2014-04-12 15:49:06 |
| 1 | 61 | 2014-04-12 15:49:15 |
| 2 | IBM | 2014-04-12 15:49:22 |
| 3 | Apple | 2014-04-12 15:49:25 |
| 2 | 23 | 2014-04-12 15:49:29 |
| 3 | 29 | 2014-04-12 15:49:34 |
| 2 | Penn State | 2014-04-12 15:49:42 |
| 2 | Amanda | 2014-04-12 15:49:48 |
| 3 | Amir | 2014-04-12 15:49:54 |
| 3 | Ohio State | 2014-04-12 15:50:01 |
| 4 | 41 | 2014-04-12 15:50:06 |
| 4 | UC Berkley | 2014-04-12 15:50:13 |
+----+------------+---------------------+
所有这一切,我会认真考虑使用4个不同的表来表示用户。我认为你可以使用一个表格来节省很多复杂性,用户可以使用' user_type'字段并将所有其他字段组合到此单个表中,或者具有您加入的单独表(例如:type1_user_properties,type2_user_properties等)。