how can i make this query: SELECT * FROM TABLE EXCEPT WHERE id='1' what i should use for that exception?
SELECT FROM table WHERE id != '1' or SELECT FROM table WHERE id <> '1'
thanx mate