mysql操做基本命令

今天預習學習的mysql語句mysql

建立一個oldboy庫sql

create database oldboy;  
ide

刪除一個oldboy庫學習

drop database oldboy; it

更新table

flush privileges; class

進入oldboy庫sql語句

use oldboy;db

建立一個student表tab

create table student(

id int(4) not null,

name char(20) not null,

age tinyint(2) NOT NULL default '0',

dept varchar(16) default NULL

);

查看錶

show tables;

能夠看錶結構

desc student;

相關文章
相關標籤/搜索