Sampel SQLite (SQLite 3.27.2)

create table tbl(str varchar(20));
insert into tbl values('Hello world!');
select * from tbl;
Doubtful Deer