sql >> Databáze >  >> RDS >> Mysql

Hudební knihovna Databáze MySQL

Něco takového by bylo dobré pro začátek. Specifikuje tabulku pro umělce, alba (s klíči pro umělce a žánry), skladby (zadané do alb) a žánry.

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. cizí klíče MySQL

  2. Výchozí databáze MySQL

  3. MySQL serveru dochází paměť nebo se nespustí

  4. Přístup k databázi MySQL v Electronu