Big Bird
06/08/2022, 3:48 AMtalents
and one of its column is of INT[]
which is an array referencing the column id
of another table called skills
.
When I run the following query it runs fine, but for the column skills
I currently get for example [1,8,19], when I'd like to instead return its `name`column like ['Engineering','Python','Solidity']
let { data, error } = await supabase
.from('talents')
.select("*")
.order('id', { ascending: false })
.limit(5)
How would I modify above query to get the values from a foreign table?Needle
06/08/2022, 3:48 AMBig Bird
06/08/2022, 4:06 AMgaryaustin
06/08/2022, 4:12 AMBig Bird
06/08/2022, 4:13 AMgaryaustin
06/08/2022, 4:17 AMgaryaustin
06/08/2022, 4:18 AMBig Bird
06/08/2022, 4:18 AMNeedle
06/08/2022, 4:19 AM