如何查看 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); 【按回车】

3
查询表内容:
desc tbl_stu; 【按回车】
温馨提示:答案为网友推荐,仅供参考
相似回答