求救!(100分)

  • 主题发起人 主题发起人 lionz
  • 开始时间 开始时间
L

lionz

Unregistered / Unconfirmed
GUEST, unregistred user!
数据库:Informix7
在BDE中进行以下操作:
正确:
select tab_a.*,tab_b.* from user_poc,udata_poc
错误:
select tab_a.*,tab_b.* from user_poc,udata_poc
where tab_a.a1=tab_b.b1 and tab_a.a2=tab_b.b2
报的错是:
Can not write to temporary file
 
怕是服务器的问题?
 
语句老象没问题!
 
thinking...
 
tab_a和tab_b难道你不对应那一个表吗?
 
试试这样
select tab_a.*,tab_b.* from tab_a,tab_b
where (tab_a.a1=tab_b.b1) and (tab_a.a2=tab_b.b2)
另外:user_poc,udata_poc是什么东西?
 
多人接受答案了。
 
后退
顶部