Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

संगीत पुस्तकालय MySQL डेटाबेस

कुछ इस तरह से शुरू करना अच्छा होगा। यह कलाकारों, एल्बमों (कलाकारों और शैलियों की कुंजियों के साथ), ट्रैक्स (एल्बम में कुंजीबद्ध) और शैलियों के लिए एक तालिका निर्दिष्ट करता है।

Table artists
----
id (primary key),
name
description
years_active
otherinfo (whatever you need)

Table albums
----
id (primary key)
artistid (foreign key to artists table)
name,
releasedate
genreid (foreign key to genres table)
picture

Table tracks
----
id (primary key)
albumid (foreign key to albums table)
name
override_artist (overrides album artist if not null)
playtime
lyric
otherstuff as needed

Table genres
----
id (primary key)
name
description


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mysql में समानार्थी कैसे बनाएं

  2. PHP के साथ html को pdf में कैसे बदलें?

  3. MySQL में मनी वैल्यू स्टोर करने के लिए बेस्ट डेटा टाइप

  4. MySQL में INSERT और UPDATE में क्या अंतर हैं?

  5. क्यों mysql max_allowed_packet स्वचालित रूप से 1m पर रीसेट हो जाता है