I am trying to denormalize a complex query involving multiple table joins i.e
[select a.col1,a.col2,b.col3,b.col4
from table1 a, table2 b
where a.col1 = b.col1 ]
Now I want to generate Create Table DDL for resulting data set by using TOracleQuery.FieldType function. It works fine for these type...