Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. mysql> describe Persona;
  2. +---------+--------------+------+-----+---------+----------------+
  3. | Field | Type | Null | Key | Default | Extra |
  4. +---------+--------------+------+-----+---------+----------------+
  5. | id | int(11) | NO | PRI | NULL | auto_increment |
  6. | nome | varchar(255) | YES | | NULL | |
  7. | cognome | varchar(255) | YES | | NULL | |
  8. +---------+--------------+------+-----+---------+----------------+
  9. 3 rows in set (0.00 sec)
  10.  
  11. mysql> describe Recapito;
  12. +-------+--------------+------+-----+---------+----------------+
  13. | Field | Type | Null | Key | Default | Extra |
  14. +-------+--------------+------+-----+---------+----------------+
  15. | id | int(11) | NO | PRI | NULL | auto_increment |
  16. | label | varchar(255) | YES | | NULL | |
  17. | value | varchar(255) | YES | | NULL | |
  18. +-------+--------------+------+-----+---------+----------------+
  19. 3 rows in set (0.00 sec)
  20.  
  21. mysql> describe PersonaRecapito;
  22. +------------+---------+------+-----+---------+-------+
  23. | Field | Type | Null | Key | Default | Extra |
  24. +------------+---------+------+-----+---------+-------+
  25. | recapitoId | int(11) | NO | PRI | NULL | |
  26. | personaId | int(11) | YES | MUL | NULL | |
  27. +------------+---------+------+-----+---------+-------+
  28. 2 rows in set (0.00 sec)