J
jiarui
Unregistered / Unconfirmed
GUEST, unregistred user!
我在一篇关于SQL数据库查询优化方面的文章中看到,使用临时表加速查询的内容,
其中代码如下:
selest cust.name,rcvbles.balance,......other columns
from cust.db,rcvbles.db
where cust.customer_id-rcvlbes.customer_id
and revbles.blance>0
order by cust.name
into temp cust_with_balance
//cust_with_balance为准备建立临时表
//cust.db,rcvbles.db为持查询的表
请问大侠,我在D6的SQL中使用为什么会出现错误?
错在哪 ?
错误提示:
Invalid use of Keyword
Token: into
Line Number:6
其中代码如下:
selest cust.name,rcvbles.balance,......other columns
from cust.db,rcvbles.db
where cust.customer_id-rcvlbes.customer_id
and revbles.blance>0
order by cust.name
into temp cust_with_balance
//cust_with_balance为准备建立临时表
//cust.db,rcvbles.db为持查询的表
请问大侠,我在D6的SQL中使用为什么会出现错误?
错在哪 ?
错误提示:
Invalid use of Keyword
Token: into
Line Number:6