还有人在吗?请教一个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;
select
a.id,
a.dob,
b.emp,
b.salary
from
employ as a,personel as b
where a.id = b.emp;