個人資料
  • 博客訪問:
正文

還有人在嗎?請教一個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;
登錄後才可評論.