How to allow only one row for a table?
问题 I have one table in which I would like only one entry . So if someone is trying to insert another row it shouldn't be allowed, only after someone deleted the previously existing row. How do I set a rule for a table like this? 回答1: A UNIQUE constraint allows multiple rows with NULL values, because two NULL values are never considered to be the same. Similar considerations apply to CHECK constraints. They allow the expression to be TRUE or NULL (just not FALSE ). Again, NULL values get past the