Exclamation Marks in a Query SQL
ms-access-2007, sql
Solution
Generally you see this in MS Access code (for the exclamation mark, a period for SQL server). You can refer to a column by table.column or if you give the table an alias, then by alias.column. You might do this if you want to be specific when using joins, or you may have to do it when two (or more) tables in a query/join have the same column name in each table.
Problem
I'm reading over this query, and I came upon a line where I don't understand heres the line ``` [FETT List]![FETT Search] ``` - FETT List is a table - FETT Search is a column in FETT List Can someone explain what the exclamation mark means? Thanks