SQLITE (SQLITE 3.27.2) Muestra

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