Exercise: Unique Username Create table with unique username. Solution sqlCopy1CREATE TABLE accounts ( 2 id INTEGER, 3 username TEXT UNIQUE 4);