Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Perpustakaan musik database MySQL

Sesuatu seperti ini akan baik untuk memulai. Ini menentukan tabel untuk artis, album (dengan kunci artis dan genre), trek (dimasukkan ke album), dan genre.

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. Memasukkan JSON ke MySQL menggunakan Python

  2. Instal Mtop (Pemantauan Server Database MySQL) di RHEL/CentOS 6/5/4, Fedora 17-12

  3. MySQL Menghapus kolom duplikat di Gabung Kiri, 3 tabel

  4. Bagaimana cara melakukan penyisipan massal di mySQL menggunakan node.js

  5. laravel 4 - bagaimana cara Membatasi (Ambil dan Lewati) untuk Eloquent ORM?