1. 程式人生 > >數據庫建表操作

數據庫建表操作

esc primary table 語句 登錄 char 個數 src log

數據庫建<( ̄3 ̄)> 表語句

使用cmd 登錄到mysq 數據庫

show databases

技術分享

首先創建一個數據庫

create database person
use  person

選中數據庫

create table student(

id int primary key auto_increment, 
name varchar(30) not null,
gender varchar(10) not null default ‘女‘,
age int

);

創建表

desc person

然後再使用desc顯示表結構

技術分享

數據庫建表操作