mysql資料庫的基本命令

2021-09-11 04:40:58 字數 1100 閱讀 2465

登入

mysql -uroot -pmysql

退出quit 或者 exit 或者ctrl+d

檢視版本

select version();

檢視當前時間

select now();

資料庫的操作

檢視所有資料庫

show databases;

檢視當前使用的資料庫

select databases;

使用資料庫

use 資料庫名;

建立資料庫

create database 資料庫名 charset=utf8;

刪除資料庫

drop database

資料表操作

檢視當前資料庫中所有的表

show tables;

檢視表結構;

desc 表名;

建立表結構的語法

auto_increment 表示自動增長

create tatimeble 欄位名稱(資料型別,可選的約束條件)

修改表-新增字段

alter table 表名 add 列名 型別;

alter table student add birthday datatime;

修改表-修改欄位-重新命名版

alter table 表名 change 原名 新名 型別及約束;

alter table students change birthday birth datatime not null;

修改表- 修改欄位不重名版

alter table 表名 modify 列名 型別及約束;

alter table students modify birth data not null;

修改表-刪除字段

alter table 表名 drop 列名;

alter table students drop birthday;

刪除表drop table 表名;

drop table students;

檢視表的建立語句- 詳細過程

show create table 表名;

show create table classes;

mysql資料庫基本命令

一 建立資料庫 create database database name 切入資料庫 use database name php中建立資料庫的兩種方法 mysql create db mysql query conn mysql connect localhost username passwor...

資料庫表基本命令mysql

我們都要笑的燦爛如花,縱然摻雜著萬般心碎.create database 資料庫名 create database db 1.直接建立資料庫 create database db character set gbk 2.建立時設定編碼格式 use 資料庫名 use db 先使用資料庫才能建立表 cr...

資料庫基本命令

增刪改查 select 從資料庫中提取資料 update 更新資料庫中的資料 delete 從資料庫中刪除資料 insert into 向資料庫中插入新資料 唯一性查詢 sql select distinct 插入語句 insert into websites name,url,alexa,coun...