Will the default value of an INTEGER PRIMARY KEY column always start at 1? Example: CREATE TABLE xyz (id INTEGER PRIMARY KEY); INSERT INTO xyz VALUES (NULL);
Will the value of the id column always be 1 in this example? I tried numerous tests, and it seems to always start at 1, I wanted to just make sure this would always be the case before I start relying on it in my code.

