Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
207 views
in Technique[技术] by (71.8m points)

java - how to update id from one table to another

I have two tables:

  • TABLE1 has columns(id,name,password),
  • TABLE2 has columns(id,salary,dept).

id in table1 is auto-generated sequence number. Data is added using java form. I wanted to show table1 id in table2 along with other details.

create or replace PROCEDURE PRO5(y in varchar,z in varchar,x in varchar,
                                c in varchar,d in varchar,b in number, j in number)
as BEGIN
    insert into emp_general(username,email,password) values(y,z,x);
    insert into SALARY_DET(username ,salary,company,dept) values(y,c,d,b);

    set j := INSERT INTO salary_det(ID) SELECT ID FROM emp_general;
END;
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try this,

 select @Id = convert(int,scope_identity());

For Oracle

 SET LID = LAST_INSERT_ID();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...