Mysql
 sql >> Database >  >> RDS >> Mysql

array in MySQL

A meno che tu non abbia una buona ragione per farlo, dovresti mantenere i tuoi dati normalizzati e archiviare le relazioni in una tabella diversa. Penso che forse quello che stai cercando sia questo:

CREATE TABLE people (
    id int not null auto_increment,
    name varchar(250) not null,
    primary key(id)
);

CREATE TABLE friendships (
    id int not null auto_increment,
    user_id int not null,
    friend_id int not null,
    primary key(id)
);

INSERT INTO people (name) VALUES ('Bill'),('Charles'),('Clare');

INSERT INTO friendships (user_id, friend_id) VALUES (1,3), (2,3);

SELECT *
  FROM people p
    INNER JOIN friendships f
      ON f.user_id = p.id
  WHERE f.friend_id = 3;