Categories
How to display everything in mysqli except for example id 5?
So you need to display everything from the base except id 7 , how to do this, help.
Answer the question
In order to leave comments, you need to log in
SELECT * FROM table WHERE id != 7
SELECT все с базы кроме id 7;
SELECT * FROM table WHERE id NOT IN(7,...)
WHERE id <> 7 add to query
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question