This has nothing to do with 'NOT IN'. MySQL also understands NOT IN, but mysql does not do subqueries.
You'll have to use two queries, one to get a list of approved users, and one to select the user_id WHERE user_id NOT IN(list_of_ids_from_first_query)