SQLite format 3 @ .n QEQq5tableproductsproductsCREATE TABLE "products" ( id INTEGER primary key, name TEXT not null, price DECIMAL not null, user_id INTEGER references users(id) -- foreign key (user_id) references users(id) ),7tableusersusersCREATE TABLE "users" ( id INTEGER primary key, username TEXT not null, email TEXT not null, address TEXT not null ) username2email2address2usernameemailaddress  Product 1@%G{