Being your work related to the Play Store, I assume that the Género
are "store categories" and these values are already stored in the database.
If the answer is yes, there is a problem of "many to many" and not just "1 to many."
For a database comply with the 1st Normal Form all table column values must be atomic, with the aim of avoiding redundancy of data.
As such, the solution used for this problem involves creating an intermediate table to store the relationship between the two entities which assuming that the Categorias
are pre-defined would look something like this:
+---------+ +---------------------+ +-----------+
| EXEMPLO | | EXEMPLO_CATEGORIA | | CATEGORIA |
+---------+ 1 * +---------------------+ 1 +-----------+
|- ID [PK]|---------|- Exemplo [PK, FK] | +---|- ID [PK] |
|- TITULO | |- Categoria [PK, FK] |----+ |- Nome |
| | | | * | |
| | | | | |
+---------+ +---------------------+ +-----------+
Either way I recommend reading the question What is database normalization? to get an idea of what the normal forms of a relational database are and the good practices related to them.