huning361 发表于 2011-3-30 21:13:17

一个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:02

你的表属性不全吧,3张表都没关联字段

xieyang702 发表于 2011-3-30 22:30:44

本帖最后由 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:14

需求不明确,打回

y_test 发表于 2011-4-22 16:26:24

说明这3个表包含还是一个项目数据库包含?

haha82 发表于 2011-5-3 21:39:40

请先明确需求!
页: [1]
查看完整版本: 一个SQL语句的问题