i think this is easy question, how to write sql query in python?
### python3 code
# ok
row = await conn.fetchrow(
'SELECT * FROM users WHERE email = $1', user_email)
# NOT ok
user_pw = await conn.fetch(
'convert_from($1, $2)', row[2], 'UTF8')
asyncpg.exceptions.PostgresSyntaxError: syntax error at or near "convert_from"