how do I select all columns where the column with ...
# javascript
f
how do I select all columns where the column with type int is greater than value x ?
s
WHERE some_column > 100
will return all results where
some_column
value is greater than 100
f
I mean in supabase-js
with the builders
f
that's what I was looking for. thanks a lot man ❤️
just more advanced, is there a greater or equal ?
s
.gte
. All other operators are in the menu on the left of that page
f
you are great. have a great night
2 Views