text to sql syntaxSat, 12 Nov 2022
Create a table called 'usrtbl' with id primary key and five columns for JPEGs only if it doesn't exist.
CREATE TABLE IF NOT EXISTS 'usrtbl' (id INTEGER PRIMARY KEY, jpg1 BLOB, jpg2 BLOB, jpg3 BLOB, jpg4 BLOB, jpg5 BLOB);