I hope it's okay to post this question here, as it doesn't particularly relate to HeidiSQL.
I'd like to create a field in one of my tables. Instead of using an underscore "_" to separate 2 words, like "first_name", I want to use a period, like "first.name"
Is this legal?
(no, I'm not interested in using "firstName" or "first_name", unless I absolutely have to)
:)
Thanks in advance.
Can I use periods "." in field names?
According to documentation the dot character is allowed in field names:
http://dev.mysql.com/doc/refman/5.0/en/identifiers.html
I suppose you'll have to quote it every time:
SELECT `first.name`FROM users
If it's a good idea or not, I leave it to you ;-)
http://dev.mysql.com/doc/refman/5.0/en/identifiers.html
I suppose you'll have to quote it every time:
SELECT `first.name`FROM users
If it's a good idea or not, I leave it to you ;-)
Please login to leave a reply, or register at first.