|
Hello,
I posted yesterday a very complex question, but I did not receive a adequate answer so I decided to simplify things, and I will try to figure out the rest of the problem :).
Ok, I need to dynamically create about 4 tables through SQL code. The NEW table names need to be automatically poplulated and generated based on like a where clause...or something that will extract the value example "Design Specification" which is equal to ROW ID "4".
Example I have a Table Called "Objects" in that table it has 4 columns, one of the values in that table is called "Designed Specification" and a primary key COULMN NAMED "Obj_ID" which has a value of number 4. I would like to create a NEW table based on the EXISITNG table "Objects" and extract the NEW table names from the coumns in the table "Objects" and generate the new table name with CREATE table statement which will automatically populate the table name without manually typing in LIKE CREATE TABLE "Designed Specification".
Hopefully I explained this well :)
Thanks so much for your help
|