If i have a database its columns like that
[id - col1 - col2 - col3]
If i wanted to retrieve all the data to use it ALL, Is it better to use
SELECT * FROM table
or
SELECT id, col1, col2, col3 FROM table
And if there is a difference, Why so?
And in case i'm not going to use the id col
is it still better to use
SELECT col1, col2, col3 FROM table
instead of
SELECT * FROM table