Usualy it is done by third table, for example. You can have tables:
create table article ( art_id int, name char(50));
create table category ( cat_id int, name char(100));
and then third table:
create table art_cat (
ac_id int,
art_id int,
cat_id int )
It allows you to have one article in many categories.