V
Size: a a a
V
\
️️
️️
V
️️
️️
\
CREATE TABLE tag_relationships (
post_id int,
FOREIGN KEY (post_id)
REFERENCES posts (post_id),
tag_id int,
FOREIGN KEY (tag_id)
REFERENCES tags (tag_id)
);
V
CREATE TABLE tag_relationships (
post_id int,
FOREIGN KEY (post_id)
REFERENCES posts (post_id),
tag_id int,
FOREIGN KEY (tag_id)
REFERENCES tags (tag_id)
);
\
\
\
CREATE TABLE tag_relationships (
post_id smallint(5) unsigned,
FOREIGN KEY (post_id)
REFERENCES posts (post_id),
tag_id tinyint(3) unsigned,
FOREIGN KEY (tag_id)
REFERENCES tags (tag_id)
);
\
M
️️