Hi all,
am trying to select information from a few tables, and because some of the tables have overlapping fieldnames e.g. name etc, I am trying to reference them in my sql statment like this...
sqlString = "select myTable1.name, myTable2.name from myTable1, myTable2 where .... and so on and so on
this unfortunately does not work and I am told that 'column not found'
My question is can fields be referenced by their table name?
If not, how can specific tables be referenced in a similar way if they have different schemas?
By the way my connection is with the
JDBC DBC bridge.... could the bridge be my problem.
Thanks in advance
Chris