mysql 如何查询插入数据表和数据结构

时间:2022-01-10 14:31:49

查询数据库   show databases;


进入其中的一个表当中     use user(这边的user, 是我的数据库里面的表)


查询,我们是否进入了这个表当中:select database();


把我们需要储存的名称插入:create table tb1(这边的tb1是我的其中的一个表)(

username varchar(20),

->age tinyint unsigned

->);


把我们的数据插入结构当中:insert tb1 varlues(‘xiaoming’,25,2500);


当我们需要插入我们指定的名称中我们可以采用:  insert tb1 (username)  values('xiaohong);


我们插入了数据结构之后,我们不懂是否插入,我们要查询他:select*from tb1;


that'all  thank you!