I use a file where I have all my SQL queries. I run the following command:
psql -U postgres -d rails_development -a -f ProjectApp/db/Query.sql
Output is as following:
SELECT * FROM "Users"
id | username | firstname | lastname | [...]
...
(27 rows)
I would like to remove query message (SELECT * FROM "Users") from output. Is that possible?