All,
My Get rows (V2) is retrieving all my SQL records in my table. I have 1100 total records and I would like to skip record 285 and 399.
How can I achieve this? Do I insert it in "Skip count"

All,
My Get rows (V2) is retrieving all my SQL records in my table. I have 1100 total records and I would like to skip record 285 and 399.
How can I achieve this? Do I insert it in "Skip count"
If you put skip record 285, it will skip the first 285 rows and retrieve the last 815 rows.
If you want to leave out the rows 285 and 399, you should use the FilterQuery and use a column with distinct identifier for rows 285 and 399.
For example if you had a list of employees in SQL table and you did not want to include the two employees that are rows 285 and 399. You could use the column of the employee names or employeeID and put in the filter EmployeeId ne 285.