1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

artist考虑极少数正则匹配内容不存在问题

This commit is contained in:
2022-11-07 15:35:22 +08:00
parent e638b09313
commit d17f4282e4
2 changed files with 14 additions and 3 deletions

View File

@@ -66,7 +66,7 @@ GROUP BY s
ORDER BY s DESC
-- 查看需要爬取的 artist 的分布
SELECT cast( format( id / 1000000, 0) * 1000000 as UNSIGNED ) as s, count(*) as count
SELECT cast( format( id / 100000, 0) * 100000 as UNSIGNED ) as s, count(*) as count
FROM wait_fetch_artist
GROUP BY s
ORDER BY s DESC