Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to insert two rows using one MySQL query? This is what I've tried but it does not work as expected:

String insert1="insert into employee values(?,?,?)";
PreparedStatement ps1 = connection.prepareStatement(insert1);
ps1.setString(1, s3);
ps1.setString(2, s4);
ps1.setString(3, s5);
ps1.executeUpdate();
ps1.clearParameters();
share|improve this question
2  
whathaveyoutried.com..... – mr_lewjam Nov 5 '12 at 9:26
1  
..... urgently. – Peter Lawrey Nov 5 '12 at 9:27
String insert1="insert into employee values(?,?,?)"; PreparedStatement ps1 = connection.prepareStatement(insert1); ps1.setString(1, s3); ps1.setString(2, s4); ps1.setString(3, s5); ps1.executeUpdate(); ps1.clearParameters(); – visakh Nov 5 '12 at 9:27
this query using i hav eonly inserting one row – visakh Nov 5 '12 at 9:28
1  
@visakh you should have given all the required information in the original question. I have edited it for you and voted to reopen it. You should also edit the question to clarify why it is not diong what you want (what result do you get vs. what you expect). – assylias Nov 5 '12 at 9:43

closed as not a real question by Subhrajyoti Majumder, Pekka 웃, DarkCthulhu, JW 웃, Sirko Nov 5 '12 at 9:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

create trigger tr_tableA_insert_after after insert on tableA.

For each row

insert into B(B_Sm) values (NEW.description);

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.