I have created table like:
CREATE TABLE demo
(
name varchar(50),
adress nvarchar
);
But I'm not getting how to insert data into adress
column which stores data of JSON object like:
INSERT INTO demo (name, adress)
VALUES ('vamsi', N'{"city":"avhfb","pin":46374});
Like this: The values I get in this adress
column is dynamic count so that's why I need to store it in JSON format.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…