0
jsonb
の値には、int
を含むキーが含まれています。PostgreSQLでJSON値をintとして選択する方法は?
私はint
列を持つ表にこれを挿入したいと思います。私はintとしてabr
のキーと値を選択するにはどうすればよいERROR: column "abr" is of type integer but expression is of type text LINE 4: values->>'abr' as abr,
select
values->>'_filename' as _filename,
values->>'abr' as abr
from temp_json;
のエラーが出ますか?