外部キーとも呼ばれる関係を持たないノードのデータベースを照会したい。この結合ステートメントを試しましたが、うまくいきませんでした
SELECT nodes.*, relationships.* FROM nodes inner JOIN relationships ON nodes.id = null;
関係のないノードだけを表示するにはどうすればよいですか? ありがとうございました
nodes Relationships
----- -------------
id int(11), id int(11),
name varchar(35), to int(11), //this is the destination node from the id relation
color varchar(7), data varchar(0) null
type varchar (12), Foreign key (id) references nodes(id)
Primary key (id)
engine = innodb