Good morning, I am developing an Android application where I have this database.
-Tables Food:
- ID Primary Key char (15)
- Name char (25)
- Description char (35)
- Tags char (35)
-Tables Tags:
- ID Primary Key char (15)
- Name char (15)
An explanation of everything, in my database the primary key of the labels table will be connected through a foreign key to the label field in the meals table. Is it possible that I can bring multiple foreign keys within this field ?, And if so, how do I do it? Because I want the app to have several tags so that you can search for the foods through these, yes no Is there any way to optimize the database? .