# Re: \[personal kdb+\] How to create and update new dictionary for every

**URL:** https://forum.kx.com/t/re-personal-kdb-how-to-create-and-update-new-dictionary-for-every/11908
**Category:** Community Support
**Tags:** kdb-and-q
**Created:** [May 24, 2019, 1:28am UTC](https://forum.kx.com/t/re-personal-kdb-how-to-create-and-update-new-dictionary-for-every/11908 "2019-05-24T01:28:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![konq1](https://avatars.discourse-cdn.com/v4/letter/k/5f9b8f/32.png) [@konq1](https://forum.kx.com/u/konq1)
#### Post date: [May 24, 2019, 1:28am UTC](https://forum.kx.com/t/re-personal-kdb-how-to-create-and-update-new-dictionary-for-every/11908/1 "2019-05-24T01:28:00Z")

</div>

Try to think of this in terms of tables. Table is a list of dictionaries:

q)true:100#enlist"Success"

q)newdict:(true)

q)first newdict

true| “Success”

q)false:100#enlist"Error"

q)newdict,:(true:false)

q)last newdict

true| “Error”

&nbsp; Konstantin
