Did anyone have a problem with tables?
# help
m
Did anyone have a problem with tables?
s
Can you elaborate on this please?
m
I also have problems using javascript-queries on my tables. Sometimes I can fix the problem by replacing the column with a new identical column. At the moment I cannot read one of my columns using a filter.
Copy code
let { data } = await supabase
        .from('customers')
        .select('id, order')
        .eq('order', 1)
I recieve
null
instead of
{ id: 6, order: 1 }
as expected from my table
After changing name on the column to delivery_order it works. Could there be names I should not use?
s
Yeah you should probably avoid such names as its a reserved word in Postgres https://www.postgresql.org/docs/8.1/sql-keywords-appendix.html
m
Thanks! Lots to learn 😄