skip to Main Content

Trouble with adding additional column with JOIN – Postgresql

Have two tables: Task: Make a table with fields: name of acquiring_company; name of acquired_company; price_amount; funding_total; Ignore those transactions in which the purchase amount (price_amount) and amount of investment (funding_total) is zero SELECT a.acquiring_company_id, a.acquired_company_id, a.price_amount, c.funding_total FROM acquisition…

VIEW QUESTION

Revoke all on schema – Postgresql

I try add audit trigger for table in BD. I find example on GitHub. But I dont understand why author use this construction after create schema and table CREATE SCHEMA audit; REVOKE ALL ON SCHEMA audit FROM public; And for…

VIEW QUESTION
Back To Top
Search