Do you prefix each field in a table with abbreviated table name?
Example:
Table: User
Fields:
user_id
user_name
user_password
Or d
It's an awesome practise:
amount means
(transactions, incomes) — unless
they are xac_amount and
inc_amount. Most query tools do
not output alias along with the
field name.x as an alias for
transaction, another one will use
tran and so on.In fact, prefixes are just forced tables aliases, so you can easily see what field belongs to what table.