News

On MariaDB and PostgreSQL: CREATE TABLE authors ( authorid serial PRIMARY KEY, surname varchar(100), givenname varchar(100), birthdate date ); On SQLite3, change the authorid line to the following, ...