SQL functions list?
Peter Shute
I tried this, and it says there's no left function:
select left(Applications.Name,5) from Applications
Is there no left function in PDQ's sql? Where can I see a list of available functions?
0
Comments
It looks like the database is sqlite.
select sqlite_versionreturns 3.27.2. I found this list of string functions: https://www.guru99.com/sqlite-functions.htmlInstead of
select left(Applications.Name,5) from ApplicationsI usedselect substr(Applications.Name,1,5) from Applications