Database search result

I am trying to search for a value from the database and store that value. Previously I could store that value in an array but today when I try to do the same I couldn’t. I can only store that search value to an object variable. How can I extract a specific column value through that object? Your official documents also say we can only store DB search value to an array

1 Like

Hey @Thanu_Matheesha,

The database result returns an object of an array of objects. You can access the result using this syntax: {{{variables.db_result.records.0.column_name}}}

1 Like