Tables are fields insde your MySql Database, you can have unlimited amount of Databases and Tables are what those DBs hold.
Let's say you have a Emplyee database called "emplyee", that database would have tables like, workers and times
A structure would be for example,
DB Emplyee
TBL workers
- FIELD full_name
- FIELD age
...
TBL times
- FIELD user_id
- FIELD work_time
The Tables would then hold their own fields, like usr_id, user_avatar, etc...
Let's say you have a Emplyee database called "emplyee", that database would have tables like, workers and times
A structure would be for example,
DB Emplyee
TBL workers
- FIELD full_name
- FIELD age
...
TBL times
- FIELD user_id
- FIELD work_time
The Tables would then hold their own fields, like usr_id, user_avatar, etc...