SQLite2XL
SQLite2XL copied to clipboard
How to Skip some rows
Is there anyway possible to skip some rows in the table, like a SELECT statement.
That way we can choose which rows to include and which to exclude
Please Update
Is there anyway possible to skip some rows in the table, like a SELECT statement.
That way we can choose which rows to include and which to exclude
Have you done it? I want to do the same
@rafaalbert I made a work around
Create a view with your select statement and pass that view instead of the table
It will work 😅
@rafaalbert I made a work around
Create a view with your select statement and pass that view instead of the table
It will work 😅
Yeei, Good idea, thnks XD