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. Mac OS XからMySQLをどのようにアンインストールしますか?

    2. SQL ServerでIDENTITY()プロパティを使用する方法

    3. データベースへのユーザーアクセスを制限する必要がある理由

    4. Oracle:シーケンスMySequence.currvalはこのセッションではまだ定義されていません