The following are the reserved words to be avoided within your SQL query:
* indexdate
* Lastmodified
* Colname
* url
* size
* col
You can use these reserved keywords through an alias as in the example query:
@@@
Select *, id as “uid”, indexdate as “mydate”, url as “myurl” from <tablename>;
@@@
Comments