Hi I learned to make one column in a table unique, for example, using the following statement:
ALTER TABLE “tbl_Certificate” ADD CONSTRAINT MYCONSTRAINT UNIQUE (“Register_No”);
I have checked Hsqldb User Guide . But can not find info on how to make two columns together unique. For example, how to make Last name and First name these two columns together in the table Client unique. Thank you.