1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-09-24 20:55:17 +08:00
commit 1cbb36adbb
11 changed files with 1692 additions and 0 deletions

12
sql/analysis.sql Normal file
View File

@@ -0,0 +1,12 @@
SELECT
total_count,
distinct_count,
total_count - distinct_count AS repeat_count
FROM
(
SELECT
count(text) AS total_count,
count(DISTINCT text) AS distinct_count
FROM
`answer`
) as tab