How can I insert the values in columns without specifying the names of the column in MySQL INSERT INTO statement?
Answers
Answered by
0
create table abc(name varchar(20), age int(2));
insert into abc values ( "xyz", 2);
insert into abc values ( "xyz", 2);
Similar questions
Science,
6 months ago
Science,
6 months ago
Computer Science,
1 year ago
Chemistry,
1 year ago
Accountancy,
1 year ago