I need to link the article tables and tags. I created 3 tables
create table Articles (
Id serial primary key,
Title char(64),
Descriptions text
);
create table Tags (
Id serial primary key,
Name char(64)
);
create table ArticlesTags (
ArticleId integer not null references Articles(Id),
TagId integer not null references Tags(Id)
);
How can I now correctly formulate a sql-request to receive an article and all the tags to it?