I was trying to check which company a User is in and the list of companies so I access the backend postgres. But when I tried to use
SELECT * FROM res_company;
It was empty. I wonder why, because in the res_users table, the company_id field has values. However, when I tried
SELECT id, name FROM res_company;
it showed the list of companies.
Why is that?