first commit
This commit is contained in:
commit
cd1e91bb99
287 changed files with 86425 additions and 0 deletions
6
rasta_data_manipulation/means_success_by_year.sql
Normal file
6
rasta_data_manipulation/means_success_by_year.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
SELECT apk1.first_seen_year, (COUNT(*) * 100) / (SELECT 20 * COUNT(*)
|
||||
FROM apk AS apk2 WHERE apk2.first_seen_year = apk1.first_seen_year
|
||||
)
|
||||
FROM exec JOIN apk AS apk1 ON exec.sha256 = apk1.sha256
|
||||
WHERE exec.tool_status = 'FINISHED' OR exec.tool_status = 'UNKNOWN'
|
||||
GROUP BY apk1.first_seen_year ORDER BY apk1.first_seen_year;
|
Loading…
Add table
Add a link
Reference in a new issue