2B
//This works CREATE TABLE example ( a integer, b integer, c integer, UNIQUE (a) ); // This did not work CREATE TABLE example ( a integer, b integer, c integer, UNIQUE (a, c) );