Results 1 to 2 of 2
- 04-23-2009, 05:31 PM #1
inserting multiple rows from one table into another
I have a basic understanding of all the sql commands to accomplish this but whenever I try to do anything with the slightest bit of complication I run into issues.
I have 2 tables, partdescriptions and myprojects
Java Code:DESC defaultengineer.partdescription Name Null Type ----------------- -------- ----------------- PID NOT NULL VARCHAR2(15 CHAR) CATEGORY NOT NULL VARCHAR2(25 CHAR) WEIGHTTONS NOT NULL NUMBER(4) WEIGHTLBS NOT NULL NUMBER(4) WEIGHTOUNCES NOT NULL NUMBER(4) WEIGHTGRAMS NOT NULL NUMBER(4) CHECKEDOUT CHAR(1)
I want to run this query to choose which things to add to my projectsJava Code:DESC defaultengineer.myprojects Name Null Type ------------ -------- ------------------ PID NOT NULL VARCHAR2(15 CHAR) ITEMDESC NOT NULL VARCHAR2(30 CHAR) DUE_DATE DATE RETURNTO NOT NULL VARCHAR2(20 CHAR) COMPLETED CHAR(1) PARTCAT VARCHAR2(25 CHAR)
however when I try to runJava Code:SELECT * FROM defaultengineer.partdescriptions WHERE weighttons < 50 AND category IN ('Custom','T-Joint') AND checkedout = 'N' --this return 7 unique parts
it gives me a missing keyword error. Is it possible to insert multiple rows from one table into another one under these constraints?Java Code:SELECT pid,category INTO defaultengineer.myprojects FROM defaultengineer.partdescriptions WHERE weighttons < 50 AND category IN ('Custom','T-Joint') AND checkedout = 'N'Liberty has never come from the government.
Liberty has always come from the subjects of government.
The history of liberty is the history of resistance.
The history of liberty is a history of the limitation of governmental power, not the increase of it.
- 04-23-2009, 07:55 PM #2
Similar Threads
-
Updating Displayed Table Rows
By raycini in forum JavaServer Faces (JSF)Replies: 2Last Post: 04-20-2009, 08:24 AM -
Inserting a Table in a TextFile?
By Keerti in forum Advanced JavaReplies: 5Last Post: 11-19-2008, 04:31 PM -
Color cells and rows in SWT table
By Java Tip in forum SWTReplies: 0Last Post: 07-11-2008, 04:31 PM -
Inserting into a table (Example)
By Java Tip in forum Java TipReplies: 0Last Post: 02-06-2008, 09:25 AM -
menu inserting table in the document
By daredavil82 in forum New To JavaReplies: 0Last Post: 12-05-2007, 05:05 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks