-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsert_data.sql
More file actions
12 lines (12 loc) · 817 Bytes
/
Copy pathinsert_data.sql
File metadata and controls
12 lines (12 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE manhwa (
id INT PRIMARY KEY IDENTITY(1,1),
title NVARCHAR(255) NOT NULL,
genre NVARCHAR(100),
description NVARCHAR(MAX),
image_url NVARCHAR(2083)
);
INSERT INTO manhwa (title, genre, description, image_url)
VALUES
('Solo Leveling', 'Action, Fantasy', 'A hunter becomes stronger as he fights through dungeons and monsters.', 'https://<your-blob-storage>/solo-leveling.jpg'),
('Tower of God', 'Adventure, Fantasy', 'A boy climbs a mysterious tower to find his best friend and discovers dangerous secrets.', 'https://<your-blob-storage>/tower-of-god.jpg'),
('Vivy: Fluorite Eye’s Song', 'Sci-Fi, Music', 'An AI with a mission to prevent the future destruction of humanity sings and fights her way through challenges across time.', 'https://<your-blob-storage>/vivy-fluorite-eye.jpg');