Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我怎样才能将JSON文件插入到单元格中Database?我不想存储文件路径,但想将整个Content文件存储JSON到字段中。
JSON
Database
Content
我能做些什么?
JSON 数据作为字符串存储/传输。您可以将其存储在普通的 NVARCHAR 列中。
json 文本有多大?取决于如果内容不大,您应该有一个 varchar 字段,如果有很多 json 文本,则应该有一个 CLOB 字段,json 只是 text ,所以您只需读取文件内容即可,也许是一些 transact-sql 脚本,并将其插入您的表中