I recently started appending the name of my table to all my columns in a table. So say I had these tables:
Companies:
Id | Name | Logo | Info
Companies Employees:
Company Id | Employees Id
Employees:
Id | Name
I would change the column names to:
Companies:
Company Id | Company Name | Company Logo | Company Info
Companies Employees:
Company Id | Employee Id
Employees:
Employee Id | Employee Name
Which allows me to use queries like SELECT * FROM `Companies` NATURAL JOIN `Companies Employees` NATURAL JOIN `Employees` without worry about renaming the Id and Name columns since I'm guaranteed there won't be columns with the same name is my Companies and Employees table. But I'm wondering if this is good schema design practice? I don't want to make a habit of it if there are good reasons against it, but I haven't been able to think of any other than a lot of redundant retyping the table name.

NATURAL JOINs, uniqueness is probably the way to go. I'd prefer to avoid spaces in my column names, but others might disagree on the necessity. – Naltharial Jul 22 '11 at 6:23