程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL命令學習(一)

MySQL命令學習(一)

編輯:MySQL綜合教程

今天我們來學習一下MySQL中的常用命令(MySQL中的命令關鍵字是不區分大小寫的):

(1)show databases; 顯示MySQL中的所有database

(2)create database dbname; 在MySQL中創建database dbname

比如我們創建一個名為student_db的數據庫:create database student_db;

(3)use dbname; 使用database dbname

比如我們准備使用student_db這個數據庫:use student_db;

(4)drop database if exists dbname; 不帶任何提示的刪除database dbname

比如我們刪除student_db這個數據庫:drop database if exists student_db;

(5)show tables; 顯示database中所有的table

(6)describe tablename; 顯示表tablename的結構

比如我們想知道student_db下面的表student_info的結構:describe student_info;

(7)create table if not exists dbname.tablename(filed1,filed2,……); 創建表tablename

比如我們想在student_db下面創建student_info表:

create table if not exists student_info(
stu_id Char(20) not null primary key,
stu_name VarChar(8) not null,
stu_sex char(2) not null,
stu_birthday date not null,
stu_class varchar(50) not null,
stu_major Char(8) not null,
stu_credit Tinyint default 0,
stu_remark Text null);

在這裡插入一點數據類型的介紹

*************************************************************************************************************************

*************************************************************************************************************************

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved