作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有下表:
人
表
+-----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------+-------------+------+-----+---------+-------+
| person_id | int(100) | NO | PRI | NULL | |
| name | varchar(50) | NO | | NULL | |
+-----------+-------------+------+-----+---------+-------+
+-----------+---------------+
| person_id | name |
+-----------+---------------+
| 1 | linon jacob |
| 2 | andrew simons |
| 3 | john random |
| 4 | kayne ran |
+-----------+---------------+
EDIT:
As per the below comment:
create table person(person_id int(100) primary key not null, name varchar(50) not null);
create table questions(QID int(50) primary key not null, questions varchar(100));
create table custom_questions(CID int(20) not null, questions varchar(50) not null, PID int(20), primary key (CID), foreign key (PID) references person(person_id));
create table feedback_system(surveyID int(20) not null, recepient varchar(50), questionID int(20) not null, submitter name varchar(50), response varchar(10), primary key (surveyID, questionID));
最佳答案
我相信您需要使用一些 LEFT JOIN,因为对于每个反馈行,您要么在 questions
中有问题,要么在 custom_questions
中有问题。
类似这样的事情:
SELECT IFNULL(q.questions, cq.questions) as 'question',
f.recepient_name,
f.submitter_name,
f.response
FROM feedback_system f
LEFT JOIN custom_questions cq
ON cq.CID = f.questionID
LEFT JOIN questions q
ON q.QID = f.questionID
WHERE f.surveyID = 1;
关于mysql - 如何标准化sql查询的结果以及如何将外键引用到两列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38958305/
我是一名优秀的程序员,十分优秀!