18 lines
1.2 KiB
SQL
18 lines
1.2 KiB
SQL
-- =====================================================
|
|
-- 创建测试直播间和作品数据
|
|
-- =====================================================
|
|
|
|
-- 1. 插入测试直播间 (eb_live_room)
|
|
INSERT IGNORE INTO eb_live_room (id, uid, title, streamer_name, stream_key, is_live, cover_image, description, create_time) VALUES
|
|
(1, 100, '欢乐游戏直播', '游戏达人', 'stream_key_1', 1, 'https://example.com/room1.jpg', '欢迎来到游戏直播间', '2026-01-01 10:00:00'),
|
|
(2, 101, '音乐分享会', '音乐主播', 'stream_key_2', 1, 'https://example.com/room2.jpg', '分享好听的音乐', '2026-01-01 11:00:00'),
|
|
(3, 102, '户外探险直播', '探险家', 'stream_key_3', 0, 'https://example.com/room3.jpg', '带你看世界', '2026-01-01 12:00:00'),
|
|
(4, 103, '美食制作教程', '美食达人', 'stream_key_4', 1, 'https://example.com/room4.jpg', '教你做美食', '2026-01-01 13:00:00'),
|
|
(5, 104, '编程技术分享', '程序员', 'stream_key_5', 0, 'https://example.com/room5.jpg', '分享编程技术', '2026-01-01 14:00:00');
|
|
|
|
-- 2. 查看 eb_works 表结构
|
|
DESCRIBE eb_works;
|
|
|
|
-- 3. 检查插入的直播间
|
|
SELECT id, title, streamer_name, is_live FROM eb_live_room WHERE id IN (1,2,3,4,5);
|