Hi if i have a table with 100000 records i want to show in a table just 50 and have pagination. Im using
Select * from table
But takes too long to load query each time. And that table will have option to edit data live. And will have 10 users working on that during the day.
What you recommend to speed up? I cant afford to load 100k records every time someone open that table
Yes will be like this?
select id, first_name, last_name, email from customer where first_name ilike {{ '%' + textinput1.value + '%' }}
order by id
limit {{ table1.pagination.pageSize }}
offset {{ table1.pagination.offset }}
That where is mandatory?
any tips? @PeteTheHeat @Kabirdas
thank you
Tess
6
Hi @agaitan026 Can you try like
instead of ilike
?
1 Like
same not sure what im doing wrong, also where i got total row count?
ScottR
8
convert the {{table1.pagination.pageSize}} to an integer by doing:
{{_.toInteger(table1.pagination.pageSize)}}
2 Likes
that will be for total row count? and what about my current query
Tess
10
Hi there,
It looks like MSSQL uses a different syntax instead of limit offset. Does the solution in this post work?
And then retool docs why said Sql in that part? So thats for postgresql maybe?
what i did is moving out to supabase postgresql but now i got this
- error:true
- message:"relation "tbl_clientes" does not exist"
- position:15

queryExecutionMetadata:{} 5 keys
- estimatedResponseSizeBytes:81
- resourceTimeTakenMs:181
- isPreview:false
- resourceType:"postgresql"
- lastReceivedFromResourceAt:1697829938337
but the table and column does exists
see
also the column named Cedula, what im doing wrong?
the query on retool is:
select * from tbl_Clientes where tbl_Clientes.Cedula ilike {{ '%' + textInput1.value + '%' }}
order by tbl_Clientes.FechaDeSeguimiento
limit {{ table1.pagination.pageSize }}
offset {{ table1.pagination.offset }}
fixed by using this quotes
but now pagination is not working, i cant see the other results, only one page
Tess
14
It looks like your total row count is equal to the page size - total row count should evaluate to the number of all rows (100000)
And yes, you're correct - our docs typically use Postgres as an example!
1 Like
Ok so that should be a new query to count rows and use that var
Tess
16
Yes, you can have a separate query that fetches the total record count
1 Like
but my issue now is when i use filters i can only search the paginated page , it wont look up all dataset (thats what i need when filters are used)
What you mean page size - rowcount?
What this means ?
Be sure any filters used in your pagination query are also used in the total row count query, so each returns the same number of rows.
Tess
20
Hi there,
row count is the total number of records when the data is not paginated.
1 Like