51Testing软件测试论坛

标题: 一个SQL语句的问题 [打印本页]

作者: huning361    时间: 2011-3-30 21:13
标题: 一个SQL语句的问题
有三张表:school ,class,  student
school 的字段有:
id,school_name,school_id,...
class的字段有:
id,class_name,class_id,...
student的字段:
id,stedent_name,...
如何有select 显示出三张表中所有叫“张三”的内容

跪求解答
作者: liukofee    时间: 2011-3-30 21:17
你的表属性不全吧,3张表都没关联字段
作者: xieyang702    时间: 2011-3-30 22:30
本帖最后由 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 = "张三";
作者: peag    时间: 2011-4-17 16:56
需求不明确,打回
作者: y_test    时间: 2011-4-22 16:26
说明这3个表包含还是一个项目数据库包含?
作者: haha82    时间: 2011-5-3 21:39
请先明确需求!




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2