Files
promote/backend/db/sql/clickhouse/insert_posts_simple.sql
2025-03-13 21:36:26 +08:00

215 lines
2.9 KiB
SQL

-- 插入KOL 1的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_1_1',
'influencer_1',
'project_3',
'新产品发布会直播预告',
'Twitter',
'text',
now() - INTERVAL 2 DAY
);
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_1_2',
'influencer_1',
'project_3',
'产品开箱视频',
'Twitter',
'video',
now() - INTERVAL 5 DAY
);
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_1_3',
'influencer_1',
'project_3',
'用户评价汇总',
'Twitter',
'text',
now() - INTERVAL 10 DAY
);
-- 插入KOL 2的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_2_1',
'influencer_2',
'project_2',
'春季新品穿搭推荐',
'TikTok',
'video',
now() - INTERVAL 1 DAY
);
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_2_2',
'influencer_2',
'project_2',
'30秒快速美妆教程',
'TikTok',
'video',
now() - INTERVAL 7 DAY
);
-- 插入KOL 3的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_3_1',
'influencer_3',
'project_1',
'最新游戏评测',
'Twitter',
'text',
now() - INTERVAL 3 DAY
);
-- 插入KOL 6的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_6_1',
'influencer_6',
'project_3',
'夏日穿搭灵感',
'Instagram',
'image',
now() - INTERVAL 1 DAY
);
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_6_2',
'influencer_6',
'project_3',
'旅行必备单品',
'Instagram',
'image',
now() - INTERVAL 5 DAY
);
-- 插入KOL 9的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_9_1',
'influencer_9',
'project_2',
'一分钟挑战赛',
'TikTok',
'video',
now() - INTERVAL 1 DAY
);
-- 插入KOL 4的帖文
INSERT INTO
posts (
post_id,
influencer_id,
project_id,
title,
platform,
content_type,
created_at
)
VALUES
(
'post_4_1',
'influencer_4',
'project_2',
'新品上市特惠活动',
'Facebook',
'image',
now() - INTERVAL 4 DAY
);