If you want to test for inequility, (i.e. you don't want to search for id = 'sdfasdfasdf') use <> instead of >=. I think the SQL compares the string values using the ascii values of the individual letters. So anything starting with a character bigger than 's' (i.e. t,u,v,...,z) is considered
larger than the strings that start with 's'
Or you can use:
SELECT id,name,status from tbl_priviledge where NOT (id = 'sdfasdfasdf') LIMIT 0, 2