创建 db_stu库、tbl_stu表 , 查询出所有库以及表内容。 www.wkfxw.com文库分享网•收集整理
mySQL软件
电脑
打开mySQL
敲入代码:show databases; 【按回车】 // 显示所有库;
新建库:create database db_stu ; 【按回车】
使用库:use db_stu ; 【按回车】
在新建的db_stu库中建表:
create table tbl_stu(
int age,
float score,
int name,
int mark); 【按回车】
查询表内容:
desc tbl_stu; 【按回车】
要注意先查询出所有的库和表,在建立新的库和表,以免发生冲突!
希望可以帮到大家,觉得好的话可以投我一票或是点个赞!