Small. Fast. Reliable.
Choose any three.
*** 37,42 ****
--- 37,44 ----
  
  *: 2005.08.03 : UPDATE table SET x WHERE y ORDER BY z is not supported. Haven't tried the LIMIT addition to that form.
  
+ *: 2005.06.01 : Named parts of natural joins. For example: SELECT a.c1 FROM T1 a NATURAL JOIN T1 b. Because sqlite reduces the number of columns kept, the name is lost.
+ 
  *: 2004.11.17 : INSERTing one record with all VALUES to DEFAULT: INSERT INTO example ()
  VALUES ();
  
***************
*** 167,176 ****
  it by using a second query and deleting, eg: SELECT timestamp from table LIMIT
  x,1; DELETE from table
  where timestamp < .....
- 
- *:Named parts of natural joins. For example: SELECT a.c1 FROM T1 a NATURAL JOIN
- T1 b. Because
- sqlite reduces the number of columns kept, the name is lost.
  
  *:create table wg (
  cpf numeric not null,
--- 169,174 ----