I have the following tables:
and the users table contains the following columns:
I am trying to run the following statement:
UPDATE users SET isTeacher = 'TRUE' WHERE id = '2';
but I am getting the following error message:
ERROR: column "isteacher" of relation "users" does not exist
LINE 1: UPDATE users SET isTeacher = 'TRUE' WHERE id = '2';
^
Please not that there is a user with id of 2. So What am I doing wrong ?
Thanks for your time