I have a couple that I make. I say tablename.column to determine what I want to select in the database ... I don't want to select all columns. However, my last connection I want to choose for this. Is there a way I can use an asterisk or something for the last connection?
The last table will be dynamic, so I canβt write it hard (although I could write it dynamically), but I thought it might be easier.
SELECT content_name.name, house.listing, street.* FROM content INNER JOIN house ON content_name.id=house.id LEFT JOIN street ON content_name.id=street.id;
sql php postgresql
Keith
source share