Carlos Suarez <[email protected]> wrote: > I need to know how I can split a date field with a slash in -, being > straight I need to convert the the date format > aaaa/mm/dd to aaaa-mm-dd
replace('aaaa/mm/dd', '/', '-')
http://sqlite.org/lang_corefunc.html
Igor Tandetnik
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

