You are on page 1of 1

create database aydb;

use aydb;
create table aytable (username varchar(12));
insert into aytable values ('aaa');
insert into aytable values ('bbb');
...
select * fromjasontable;

You might also like