我想在mysql中建立一个考勤系统。比如两个不同的日期。 2017-12-21和2017-12-23
如果我有
我的表格测试看起来像这样。 姓名日期出勤评论
Person 1 2017-12-21 Yes comment
Person 1 2017-12-23 Yes comment
Person 2 2017-12-21 No comment
Person 2 2017-12-23 Yes comment
我想要的结果是
-----2017-12-21----------------2017-12-23-----------
-----Person 1 Yes comment ---- Person 1 Yes comment
-----Person 2 NO comment ---- Person 2 Yes comment
----------------------------------------------------
认为leftjoin会起作用,但对我来说有人可以帮忙吗? 感谢。
答案 0 :(得分:0)
我不太确定您期望的确切格式。如果您的表结构如下所示,
CREATE TABLE IF NOT EXISTS `attendance` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`date` date NOT NULL,
`attendance` varchar(10) NOT NULL,
`comment` varchar(1023) NOT NULL,
PRIMARY KEY (`id`)
);
您可以运行以下查询
SELECT date,
GROUP_CONCAT(`name`, ' ', `attendance`, ' ', `comment`) AS attendance_info
FROM `attendance`
GROUP BY `date`
以下列格式提取数据。
date | attendance_info
2017-12-21 | Person 1 YES Comment,Person 2 NO Comment
2017-12-23 | Person 1 YES Comment,Person 1 YES Comment
答案 1 :(得分:0)
它适合运动队。我有这个我的数据库现在我已经测试了许多方法来做到这一点。 Group_Contact不会工作。
CREATE TABLE IF NOT EXISTS `attendance` (
`playerid` int(11) NOT NULL,
`idnumber` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`date` date NOT NULL,
`attendance` varchar(10) NOT NULL,
`comment` varchar(1023) NOT NULL,
PRIMARY KEY (`playerid`)
);
这是我希望以后在php中使用它的结果。 (a =出勤c =评论)
attendance| Name | a2017-12-21|c2017-12-21|a2017-12-23|c2017-12-23|
| Person 1 | YES | Comment | NO | Comment |
| Person 2 | YES | Comment | YES | Comment |