个人资料
  • 博客访问:
正文

还有人在吗?请教一个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;
[ 打印 ]
阅读 ()评论 (2)
评论
kzc866 回复 悄悄话 你陷职场误区了。 呵呵 ,转出来吧, 呵呵。有笑有哭,又学又念。有道是:机关算尽太聪明 反误了卿卿性命。嘿嘿
balancedview 回复 悄悄话 insert into lib.temp
select
a.id,
a.dob,
b.emp,
b.salary
from
employ as a,personel as b
where a.id = b.emp;
登录后才可评论.