mysql之表的創建

通過創建一個數據庫mydbs以及表tb_stu和表tb_stu1來說明。 1創建數據庫 create database mydbs; 2創建表tb_stu和tb_stu1     2.1進入到數據庫mydbs     use mydbs;      2.2創建表   create table tb_stu(name varchar(50),age int,gender char(10));    
相關文章
相關標籤/搜索