I would usually have one table with an "Approved" table. Most queries will only retrieve rows where this flag is true. For instance. you can create an "ApprovedUsers" view as
SELECT ... FROM Users WHERE Approved = 1
(where ... are all columns except the Approved column).
. , , "ApprovedUsers", .