Hi
I have a problem where dot is used in a table's column name.
Say that there is a column called 101.name in a table t1.
How do i reference this column in the following:
select ... from table t1, table t2 where t1.101.name='test'
This doesn't work because of the two dots in the same reference.
Does anyone know how to do this?
Thanks
-------------
Looks like it is t1.[101.name]='test' :)