我对 PostgreSQL 很陌生,所以也许我遇到了一些我无法识别的菜鸟错误,所以请告诉我为什么我无法删除这些数据。
这是正在发生的事情:
DELETE FROM userprofile WHERE user LIKE (SELECT User FROM User WHERE username LIKE 'testuser');
ERROR: column "username" does not exist
LINE 1: ...file WHERE user LIKE (SELECT User FROM User WHERE username L...
当我使用 django 用户时,我知道用户名确实存在,那么,我怎样才能将其删除?