一个SQL语句的问题
有三张表:school ,class,studentschool 的字段有:
id,school_name,school_id,...
class的字段有:
id,class_name,class_id,...
student的字段:
id,stedent_name,...
如何有select 显示出三张表中所有叫“张三”的内容
跪求解答 你的表属性不全吧,3张表都没关联字段 本帖最后由 xieyang702 于 2011-3-31 08:18 编辑
有三张表:school ,class,student
school 的字段有:
id,school_name,school_id,...
class的字段有:
id,class_name,class_id,...
student的字段:
id,student_name,...
如何有select 显示出三张表中所有叫“张三”的内容
你这里的‘张三’指的是 名字为 ‘张三’的人的全部 school, student,class信息的吗
你这个表建得有些问题, 如school表,id这个字段似乎没啥意义。
school 表中需要有个class_id, class表中需要有个class_id 把三个表连接起来
select sc.*,c.*,st.* from school as sc, class as c, student as st where sc.class_id = c.id and c.id = st.class_id and st.student_name = "张三"; 需求不明确,打回 说明这3个表包含还是一个项目数据库包含? 请先明确需求!
页:
[1]