1

There are 1 best solutions below

2
On

users is a list of tuples. In your image, you show that the database contains just one field, for username.

Thus when you do users[0], this returns a tuple of size 1: ('Matthew') which is not a valid response.

To return Matthew, you should return users[0][0]: the first [0] to fetch the first row from your query and the second [0] to fetch the first field (username) from that row.

Edit: Updated my answer to match OP's SQL schema