There are different ideas behind how to use case and how to separate words in database object names. You shouldn't use spaces to separate words, but you can use cases or underscores.
Depending on the configuration of the MySQL server, it may not be possible to use anything but lowercase naming, so the following information is more generalized to apply to all RDMS.
The different types of case naming are as follows:
- lowercase naming: This means that the entire object name is lowercase. For example, catbreeds and dogbreeds are table names with a lowercase naming convention.
- UPPERCASE naming: This means that the entire object name is uppercase. For example, CATBREEDS or DOGBREEDS are table names with an uppercase ...