I have a table called bank with three columns: uid, nick, balance.
bank
uid
nick
balance
I am trying to create a query that will return
You need to use single-quote ('), not tick marks for values of your fields
'
SELECT b.balance FROM bank AS b WHERE b.nick='Alex' LIMIT 1
Tick marks are used to denote field names.