I have been using MySQL for a while now and for some reason have always been under the impression that it is good practice to use the same style of names for fields as you would for program variables (eg date_last_updated). I'm not sure where I got this idea or if it is correct. I guess it makes queries easier to write and shorter in length. Anyway, doing things this way usually means that when you use PHP to generate htlml to show the contents of a table, you end up having to add "nice" column names (such a "Date last updated") as you can't rely on the actual fields names being easily understood by people viewing the report.
This made me wonder whether MySQL had anywhere else you could store the plain english heading names on the tables. Maybe user defined attributes or meta data or something.
Can anyone advise?
TIA.