PostgreSQL select query

PHOTO EMBED

Tue Aug 17 2021 07:39:55 GMT+0000 (Coordinated Universal Time)

Saved by @mglejser #sql

SELECT 
	t.col1,
	s.col3
FROM tbl1 AS t, tbl2 AS s
WHERE t.col2 = s.col1;
content_copyCOPY