Android 9 contacts2.db calls query

master
Costas K 5 years ago committed by GitHub
parent 80cc980221
commit 7cce87d145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,18 @@
Select
id,
name,
number,
case type
when 1 then 'incoming' --incoming calls
when 2 then 'outgoing' --outgoing calls
when 3 then 'missed' --missed calls
when 4 then 'voicemail' --Call log type for voicemails
when 5 then 'rejected' --rejected by direct user action
when 6 then 'blocked' --calls blocked automatically
when 7 then 'answered externally' --call which was answered on another device
else type
end as 'type',
datetime(date/1000,'unixepoch','localtime') as 'date',
duration
from calls
order by id desc
Loading…
Cancel
Save