Which one is best to query the jcr ? Is SQL or JCRSQL2 or JQOM ?
Hi,
SQL - select * from nt:base where cq:lastModified > TIMESTAMP '2014-04-08T23:59:59.000+05:30'
is works fine .But for JCR-SQL2 what will be the query I tried this
SELECT * FROM [nt:base] AS s WHERE cq:lastModified > TIMESTAMP '2014-04-08T23:59:59.000+05:30'
But no luck.
Thanks in advance