I have tried to create view type_of_the_house_view but it doesn't work. What could be the matter?
// the code is written on PostgreSQL
create view real_property_and_seller_view
as select (real_property.seller_id,
house_id,
cost,
floor,
square,
surname,
name,
phone_number)
from real_property left join seller
on (real_property.seller_id = seller.seller_id);
but it doesn't work... I can speculate about what looks wrong, but if you tell us the exact error message it would be helpful.