标签: php mysql prepared-statement
有人可以在列 teacher 的值等于charles的所有行中向我显示一个MySQL语句,该语句将获得列 student 的值吗?
答案 0 :(得分:3)
如果此信息在同一个表中,则
select student from table_name where teacher = 'charles'
如果您有3个表应该是(教师,学生和M:N表格,对于teacher_students),请发表评论,然后您需要加入。