I want to know what option makes the commandline execution of MySQL, on an empty reply, print empty set.
mysql -u root -p myPassword mytable -e "select * from names where first="%andrew%"\G"
If this query returns empty set, then the commandline execution exits without printing that there was no answer. How to make it print empty set?
The verbose mode only prints the query.