CREATE TABLE products (
Id INTEGER PRIMARY KEY AUTO_INCREMENT,
name TEXT NOT NULL,
description TEXT NOT NULL,
price REAL NOT NULL
);
INSERT INTO products (name, description, price) VALUES ('Prueba','Prueba',1000);
DELETE FROM products WHERE (1=1);
INSERT INTO products (name, description, price) VALUES ('NAME','Description',1000);
SELECT table_name FROM information_schema.tables where table_name <> 'products' LIMIT 1;
SELECT * FROM information_schema.tables