Загрузка видео...

Не удалось загрузить видео

На главную

JSON columns in Postgres can be flexible, but too much flexibility can be risky as you might accidentally end up with malformed data. You can prevent this using the pg_jsonschema extension to easily define a schema for your JSON and JSONB columns!

17,480 просмотров • 1 год назад •via X (Twitter)

Комментарии: 6

Фото профиля Ethan Davies
Ethan Davies1 год назад

I'm all for using JSON schemas to enforce data consistency. In my experience, it's a great way to maintain data quality, especially when working with complex JSON data structures.

Фото профиля Kyle @ KyTech
Kyle @ KyTech1 год назад

I’ve been curious about JSON columns. I have a couple use cases that would be solved with it. But is it seen as inefficient in cases of large datasets or large json sets? Cause I assume it’s like an index on an index when queried?

Фото профиля Michael
Michael1 год назад

The performance of no schema with the rigidness of a schema

Фото профиля Noël
Noël1 год назад

I came across this video at the perfect time, thanks!

Фото профиля abelardoit🐦
abelardoit🐦1 год назад

Is not enough to store a string (json) in a text column?

Фото профиля Tyler Shukert
Tyler Shukert1 год назад

Using a JSONB column allows you to filter the data using the properties of the column, and also allows you to index the column, so you can efficiently query the data. In addition to that, if you only want a certain property of the column and not the entire thing, you can do that too!

Похожие видео