插入数据

INSERT INTO customer (
    first_name,
    last_name,
    email,
    address_id,
    active,
    create_date,
    last_update,
    customer_id,
    store_id
VALUES (
    'IVAN',
    'SIDOROV',
    'ivan.sidiriv@gmail.com',
    591,
    1,
    '2018-11-07',
    NULL,
    602,
    1
)


customer 表的所有字段都填了值,但列的顺序与表定义中的顺序不同。