还有人在吗?请教一个SQL问题。谁能帮看是什么问题,谢谢。

来源: 2010-05-30 15:28:37 [博客] [旧帖] [给我悄悄话] 本文已被阅读:

got error message as:
...Syntax error: expected something between the word 'a' and '.'.

很简单的一短code:

insert into lib.temp
select
a.id,
a.dob,
b.emp,
b.salary
from
employ a,personel b
where a.id = b.emp;
quit;