-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems-bulk.sql
72 lines (71 loc) · 1.55 KB
/
items-bulk.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
-- Sample data for items table
INSERT INTO
items (name, description)
VALUES
(
'Laptop Pro X',
'High-performance laptop with 16GB RAM and 512GB SSD'
),
(
'Wireless Mouse',
'Ergonomic wireless mouse with long battery life'
),
(
'Mechanical Keyboard',
'RGB mechanical keyboard with cherry MX switches'
),
(
'27" Monitor',
'4K resolution monitor with HDR support'
),
(
'USB-C Hub',
'Multi-port hub with HDMI, USB 3.0, and power delivery'
),
(
'Noise-Canceling Headphones',
'Wireless headphones with active noise cancellation'
),
(
'Webcam HD Pro',
'1080p webcam with built-in microphone'
),
(
'Portable SSD',
'1TB portable SSD with USB 3.2 support'
),
(
'Drawing Tablet',
'Digital drawing tablet with pressure sensitivity'
),
(
'Smart Speaker',
'Voice-controlled speaker with premium sound quality'
),
(
'Wireless Charger',
'Fast wireless charging pad for smartphones'
),
(
'Gaming Controller',
'Wireless gaming controller with haptic feedback'
),
(
'Graphics Tablet',
'Professional graphics tablet for digital artists'
),
(
'Network Router',
'Dual-band Wi-Fi 6 router with mesh capability'
),
(
'Power Bank',
'20000mAh power bank with fast charging support'
);
-- Verify the data
SELECT
*
FROM
items
ORDER BY
id;