建立mysql資料庫

2021-08-21 07:53:42 字數 1103 閱讀 3147

#名稱:tbl_user,名稱不超過64字元;盡量不使用關鍵字來命名;

#如果全部由數字或者保留字組成,或者名字包含特殊字元,則使用單引號將名字括起來,盡量避免使用

#型別,整數型別,字段逗號分隔,分號結尾

#使用者的名字,字串型別

#使用者密碼,字串型別

create table tbl_user

(#欄位

id int(3),

name varchar(8),

pasword varchar(20)

);#重新命名

alter table tbl_user rename to tbl_member;

rename table tbl_member to tbl_user;

#新增字段()

alter table tbl_user add email varchar(255) not null;

#修改欄位的定義

alter table tbl_user change id newid int(3);

#刪除字段

alter table tbl_user drop email;

#刪除表

drop table tbl_user;

#顯示所有資料庫

show databases;

#進入資料庫

use jikedb;

#顯示資料庫中所有的列表

show tables;

show tables from phpmyadmin;

use phpmyadmin;

show tables;

#顯示表的結構(欄位名稱,資料型別,當前字段是否允許為空,是否為主鍵或者外來鍵,預設值,額外的資訊)

describe pma__bookmark;

#顯示表單結構

describe jikedb;

show databases;

use jikedb;

show tables;

alter table tbl_user add address varchar(255) not null;

alter table tbl_user drop address;

建立mysql資料庫總結 MySQL資料庫總結

引擎 檢視mysql預設引擎 show variables like storage engine 檢視表引擎 show table status from 資料庫名 修改表引擎 alter table 表名 engine innodb 建立時直接定義引擎 create table 表名 engin...

建立mysql資料庫

登陸資料庫 如何建立乙個資料庫和表單 new mysql.php 獲取連線mysql connect 伺服器,使用者名稱,密碼 con mysql connect localhost root if con 建立乙個資料庫school if mysql query create database s...

MySQL 建立資料庫

使用普通使用者,你可能需要特定的許可權來建立或者刪除 mysql 資料庫。所以我們這邊使用root使用者登入,root使用者擁有最高許可權,可以使用 mysql mysqladmin 命令來建立資料庫。以下命令簡單的演示了建立資料庫的過程,資料名為 runoob root host mysqladm...