I know some sql but don't quite understand the things behind the scene. And this question came to me the other day while I am taking shower...
If we compare these two queries below:
a. select * from table_abc;
b. select id, name, timestamp from table_abc;
which query is (theoretically) faster? My guess is a because in query b it takes time to pick out the 3 columns I want. But that's counterintuitive at the same time because that means getting less information takes longer. All comments/answers are highly appreciated!