I have to insert json data in database. Unable to add ambersand. I'm using below query.
insert into sample_table(column1, column2) values('Data1',
'{
"Subject" : "Language",
"List" : {
"Test Type" : "Practical",
"Mode" : "Written & Oral",
}
}'
);
I have tried concat option, that is not working, Guide me to resolve this.