关于临时表查询的结果!
我有两个临时表 table1 s1,s2,s3table2 s1,s2,s3,s4,s5
现在我要做查询 select table1.s1,table1.s2,table1.s3,table2.s1,table2.s2,table2.s3,table2.s4
from talbe1,table2 where table1.s1=talbe2.s5 into cursor temp1
那么 temp1中有7个字段,
前面6个字段是 s1_a,s2_a,s3_a,s1_b,s2_b,s3_b, 那么第七个字段是什么啊,,是s4呢,还是 s4_b呢
谢谢啦!!