According to different websites, a transaction begins with
BEGIN TRANSACTION [optional name];
And then something like this follows:
DROP TABLE a_fancy_table;
COMMIT [optional name];
But if I try this with a name in postgres, it doesn’t work. Is it simply not possible? Will it be possible in a future version? I haven’t found any definite statement on the internet about this.