I need to create a table with a single column: email
.
Can I create a table with a single column and add a clustered index on email
? Or should I create and identity column and do a non-clustered on email
?
The table will hold around a million email addresses.
Developers will use this table, and I imagine they will just do where xxxx in (select email from table);
the way I see it, there is no other way of using this table.
I will run a merge once a week that will insert new emails. Not sure if I should do a merge, if it is uniquely clustered on email. I can just insert and hopefully if a record is duplicated it would not insert it and continue with the rest, right?