The read operation reads the whole row. The size of the row is determined by your select statement. So, if you have a thousand coluns and only want 4, you can do that in your select. If on the otherhand, you want 5 columns if column 1 is Y and 8 columns if it is N, then your out of luck, that can't be done with a single select * from table.
The reason it can't be done is that the call to the database sends back a stream of data (the resultset) as fast as it can, there's no further communication between the two, and even if there was, it would have to be on UNSENT rows as the current row would have already been sent and received. To do what you are talking about would require two way communication on every column, which would kill performance except in truely exceptional circumstances. Doing that even on row basis would typically be inefficient.