For example, I have table users(id, username, email).
Is there any difference between following queries ? (maybe performance, or anything else)
SELECT id, username, email FROM users
and
SELECT id, email, username FROM users
Generally, does column order matter creating PostgreSQL tables ?