Is it okay that I use numbers for table names in my database
For example
create table `tbl_love143`;
Is it a good naming convention?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your database engine permits numbers, I see no reason not to use them. However, given your example of
tbl_love143, does this mean you have 142 other ‘love’ tables? if so, there is something seriously wrong with your database design!In summary, numbers are fine, but having multiple tables that store the same ‘type’ of information is not.