SelectLimitOn this pageLimitLimit is used to specify the number of records to return. It is available with only select.SqlSelect * from Table_Name Limit number;JsStorevar results = await connection.select({ from: "Table_Name", limit: number});//results will be array of objects.console.log(results);Example