Answers for "mysql insert into table"

SQL
3

fk in insert mysql

INSERT INTO joke(joke_text, joke_date, author_id)
VALUES (‘Humpty Dumpty had a great fall.’, ‘1899–03–13’, 
        (SELECT id FROM author WHERE author_name = ‘Famous Anthony’));
Posted by: Guest on November-17-2020
5

insert mysql

INSERT INTO tbl_name (a,b,c) 
    VALUES(1,2,3), (4,5,6), (7,8,9);
Posted by: Guest on May-05-2020
0

insert into mysql

INSERT INTO "table_name" ("column1", "column2", "column3", ...)
VALUES ('value1', "value2", 'value3', ...);
Posted by: Guest on May-02-2021

Code answers related to "mysql insert into table"

Code answers related to "SQL"

Browse Popular Code Answers by Language