# Vector{Dict} to Tables.jl table

**URL:** https://discourse.julialang.org/t/vector-dict-to-tables-jl-table/66084
**Category:** General Usage
**Tags:** tables
**Created:** [August 9, 2021, 5:54pm UTC](https://discourse.julialang.org/t/vector-dict-to-tables-jl-table/66084 "2021-08-09T17:54:48Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mthelm85](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mthelm85/32/224164_2.png) [@mthelm85](https://discourse.julialang.org/u/mthelm85)
#### Post date: [August 9, 2021, 5:54pm UTC](https://discourse.julialang.org/t/vector-dict-to-tables-jl-table/66084/1 "2021-08-09T17:54:48Z")

</div>

What’s the most performant way to get a vector of dicts into a Tables.jl table?

For example,

```julia
data = [
    Dict("id" => 1, "name" => "Bob"),
    Dict("id" => 2, "name" => "Bill"),
    Dict("id" => 3, "name" => "Betty"),
    Dict("id" => 4, "name" => "Beatrice"),
    Dict("id" => 5, "name" => "Bernadette")
]

```
