有两个关系S(A,B,C,D)和T(C,D,E,F),写出与下列查询的等价的SQL语句(最好用链接查询方法):1.S∞T,2.S∞T(S.C=T.C),3.S∞T(A<E)
select * from S inner join T on s.c=t.c and s.a<t.e