there is a table with just one column: userid
when users access that page, his userid is being inserted to the table but userid's are unique, so there isn't two same userid's on that table.
i got two choices (i think);
making unique and using insert command everytime a user accesses that page
checking if the user alreade recorded by SELECT then insert if no record found
which one is faster?