Small. Fast. Reliable.
Choose any three.
*** 235,240 ****
--- 235,242 ----
  *:DELETE from table ORDER BY column LIMIT x,y is not supported. I worked around
  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.
+ 
  ===========
  REMARK
  ===========