Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私の質問です。
この構造を持つ何百人もの人々からの投稿を含む1つのデータベースフィールドposts_contentがあります。
ブロックしたいIPの別のデータベースフィールドposts_block
フィールド1から選択クエリを作成して、ブロックなしで適切な投稿を選択するにはどうすればよいですか
SELECT * FROM table1 INNER JOIN table2 ON table1.ip=table2.ip
select * from posts_content WHERE ip <> (select ip from posts_block);