Adds new row with JSON column
document_details
INSERT INTO students (
    first_name, 
    last_name, 
    gender, 
    points, 
    document_details
) 
VALUES (
    'Beka', 
    'Gelashvili', 
    '1', 
    '82', 
    '{"issue_date":"2020-05-18", "expire_date":"2030-05-18", "number":"ET2312UO"}'
);
by Valeri Tandilashvili
4 years ago
MySQL
JSON
Full MySQL Course for Beginners
1
Pro tip: use ```triple backticks around text``` to write in code fences