I am contracting and I've seen quite a bit of odd fully qualified field references. It seems to work but rubs me the wrong way to look at it...
I of course expect to see...
The exclamation point does not bother me too much as I expect that fields is the default collection, but the bracketing is what is throwing me. Since the peculiar syntax is not default SQL syntax, I have been 'fixing' it as I run into it.
Any thoughts on why it works? It is more of a curiosity to me at this point than anything.
Code:
[Table name!Field Name]
I of course expect to see...
Code:
[Table name].[Field Name]
The exclamation point does not bother me too much as I expect that fields is the default collection, but the bracketing is what is throwing me. Since the peculiar syntax is not default SQL syntax, I have been 'fixing' it as I run into it.
Any thoughts on why it works? It is more of a curiosity to me at this point than anything.