Small. Fast. Reliable.
Choose any three.
*** 226,231 ****
--- 226,243 ----
  sqlite reduces the number of columns kept, the name is lost.
  
  *:The ALL and ANY quantifiers for comparisons with subquery results aren't supported.
+ 
+ *:create table wg (
+ cpf numeric not null,
+ id numeric not null,
+ nome varchar(25),
+ primary key (cpf)
+ foreign key (id)
+ );
+ the foreign key (id) generate an error, a chance to be supported in the future?
+ foreign key dont supported in sqlite? or generater automaticaly or ?
+ 
+ 
  ====
  FEATURES ADDED IN RECENT VERSIONS
  ====