Computer Science, asked by sivangsivang6803, 6 months ago

Create a database for maintaining a song collection.
Hint : Create fields for fields such as artist, movie, year released, etc​

Answers

Answered by valeriy69
8

CREATE TABLE songs (

id INTEGER PRIMARY KEY AUTOINCREMENT,

artist TEXT NOT NULL,

downloads INT NOT NULL,

year INT NOT NULL,

released INT NOT NULL

);

\small\mathsf\color{lightgreen}useful?\: \color{white}\mapsto\: \color{orange}brainliest

Similar questions