Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Thư viện nhạc Cơ sở dữ liệu MySQL

Một cái gì đó như thế này sẽ tốt để bắt đầu. Nó chỉ định một bảng cho nghệ sĩ, album (với các khóa thành nghệ sĩ và thể loại), bản nhạc (được khóa vào album) và thể loại.

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. Chuyển đổi tập lệnh MySQL sang H2

  2. Đặt lại mật khẩu gốc MySQL khi không xác định được mật khẩu hiện tại

  3. org.json.JSONException:Giá trị <br của loại java.lang. Chuỗi không thể được chuyển đổi thành JSONObject

  4. Không thể kết nối với máy chủ MySQL cục bộ trong trình soạn thảo-docker

  5. SQL:Sử dụng GROUP BY và MAX trên nhiều cột