Skip
Skip is used to specify the number of records to skip. It is available with only select.
var results = await connection.select({
from: "Table_Name",
skip: number,
});
//results will be array of objects.
console.log(results);
Skip is used to specify the number of records to skip. It is available with only select.
var results = await connection.select({
from: "Table_Name",
skip: number,
});
//results will be array of objects.
console.log(results);