Multiple choice technology databases

If an UNIQUE KEY constraint on DATE column is created, will it accept the rows that are inserted with SYSDATE ?

  1. Will

  2. Wont

  3. NA

  4. na

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When SYSDATE is inserted into a DATE column, multiple rows inserted on the same day will have the same date value (time component may be truncated). This violates the UNIQUE constraint which requires all values to be distinct. The question tests understanding that SYSDATE-derived values can conflict when only the date portion is considered. Options C and D are not meaningful responses.