Let's say you have a bunch of MySQL tables, and you want your end users to be able to generate reports with that data with a PHP script. You can present the field names from those tables in a dropdown, so a user might be able to say, "first_name equals John." Great. But what if you want those field names to be a little more readable? For instance, I'd like the user to be able select "Name of First Pet" as a field, instead of "first_pet_name." I definitely don't want to store that information in the markup, as we might be adding and removing tables pretty frequently. What's the simplest way to pull this off?
|
|
|
||
|
|
|
|
I'd do something simple like replacing underscores with spaces, and upper casing the first letter. |
||||||
|
|
|
You can create a table, to bind text informations to table+column pairs. Let's say you have a table users, and you want to show column name 'Name Of First Pet' instead of *first_name*. Let's say (table name ColumnTextInformations):
So you have unique identifiers for your column labels. Using it it's very easy:
|
||
|
|
|
|
I'd store it in the database.
Where schema is what you commonly call "database" in mysql (what goes after Of course, you'll have to make sure the DBA updates that whenever changing the schema. I believe MySQL allows a comment on a table, but not a column, or you could use that. Edit: Changed the varchar to 64 because that's what the MySQL manual documents as the max size. Also, it turns out you can put a comment on each column if you wish — and you can read those back from information_schema.columns. But I'd still do it the way shown above as its more flexible (you can put additional data in there easily, such as your "should I show this field" flag) and also allows comments to be used for their intended purpose. |
|||
|
|
|
The simplest solution is to use delimited identifiers. This allows you to spell table names and column names containing whitespace, punctuation and special characters, SQL keywords, etc. You have to delimit the table names and column names in SQL queries (including the
MySQL uses back-ticks (as shown above) for delimited identifiers by default. See "Do different databases use different name quote" for more details. |
||||||||||
|
|
|
I'm not saying this is a good idea, but technically -- technically -- MySQL will let you create tables and columns that include spaces if you surround those identifiers with backticks throughout your code. For example:
|
||
|
|
|
|
Ever heared of column aliases ? SELECT
pet AS |
||
|
|
