Let's say I have a request
UPDATE foo.bar SET crop = 5 WHERE earth = 'brown'
I would write it like this:
UPDATE foo.bar SET crop = 5 WHERE soil = 'brown'
I write queries in this format to make them more readable in my code. However, this is transferred between the web server and the database server, so I assume that the wasted space will take up some bandwidth and slow down the transfer a bit.
Assuming I'm writing much larger queries, those that take up 20+ lines, are they inefficient so as not to cost?
source share