有两个关系S(A,B,C,D)和(C,D,E,F),写出与下列查询等价的SQL表达式
答案:1 悬赏:70 手机版
解决时间 2021-01-05 15:14
- 提问者网友:愿为果
- 2021-01-05 06:36
有两个关系S(A,B,C,D)和(C,D,E,F),写出与下列查询等价的SQL表达式
最佳答案
- 五星知识达人网友:长青诗
- 2021-01-05 08:14
1、σA=10(S)
select * from s where A=10
2、πA,B(S)
select A,B from S
3、πC,D(S)*T
select * from S,T where T.C=S.C and T.D=S.D
select * from s where A=10
2、πA,B(S)
select A,B from S
3、πC,D(S)*T
select * from S,T where T.C=S.C and T.D=S.D
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯