On 28 Oct 2014, at 8:06pm, pablo Van <pdvm2...@gmail.com> wrote:

> WHEN new.DiaHs_Inicio not between (old.DiaHs_Inicio and old.DiaHs_Fin)

I do not think SQLite supports NOT BETWEEN.  I would change it to something like

WHEN (new.DiaHs_Inicio < old.DiaHs_Inicio) OR (new.DiaHs_Inicio > old.DiaHs_Fin)

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to