Assume a table bank contains 3 fields, id, name, and balance.
I am trying to understand how to select all fields from this table and add another custom field to the result set as follows:
Query (something like)
SELECT * FROM bank WHERE balance+10 AS plusTen AND id != 12
PHP
echo $row['plusTen']; //echos whatever balance was for this record + 10 added to it
Is this even possible?
I appreciate any suggestions.