Balances of accounts which contain "Phone" in their name

This query shows the balances of accounts which contain “Phone” in their name, on each day a transaction was made on that account.

SELECT
  date, account, position, balance 
WHERE 
  account ~ 'Phone';