Computer Science, asked by saurabhsaurabh5582, 1 year ago

How can I insert the values in columns without specifying the names of the column in MySQL INSERT INTO statement?

Answers

Answered by bishwajit18
0
create table abc(name varchar(20), age int(2));
insert into abc values ( "xyz", 2);
Similar questions