```sql SELECT 'meal' as "type" ,count(*) from meal where user_id='' UNION ALL SELECT 'deposit' as "type" ,count(*) from deposit where user_id='' ``` how to do this in drizzle?