I need limited number of rows while fetch the data from QLDB. Unfortunately, QLDB does not support Limit function in it's queries. However, MySQL supports the feature of limited number of rows from table.
But, I have seen the Reserve Words in QLDB. Here is the link: https://docs.aws.amazon.com/qldb/latest/developerguide/ql-reference.reserved.html In this documentation, these Reserved words could be use in quoted identifier with double quotation marks (for example, "user").
My query is: SELECT * FROM Balance "LIMIT" 3
still it's not working. Kindly give some suggestions to get limited number of rows from QLDB Tables for pagination purpose.