筆記 Mysql例項 建庫建表並插入資料1

2021-09-07 05:25:10 字數 542 閱讀 9492

drop database if exists school;  // 如果存在school則刪除

create database school;  // 建立庫school

use school;  // 開啟庫school

create table teacher(  // 建立表teacher

id int(3) auto_increment not null primary key,

name char(10) not null,

address varchar(50) default 『深圳』,

year date

);  // 建表結束

// 以下為插入字段

insert into teacher values(」,』allen』,'大連一中』,'1976-10-10′);

insert into teacher values(」,』jack』,'大連二中』,'1975-12-23′);

如果你在mysql提示符鍵入上面的命令也可以,但不方便除錯。有兩種方法來解決這個問題:

mysql建立使用者表 mysql 建庫建表建使用者

1.建立資料庫 create database school 2.使用資料庫 use school 3.建立使用者 create user jame localhost identified by jame 4.授權使用者 注意這裡是用了 哦,可以自己講school也替換成 號 grant sele...

mysql建表例項

set names utf8mb4 set foreign key checks 0 table structure for bookcategory drop table ifexists bookcategory create table bookcategory category varcha...

mysql登入,建庫,建表

cmd下 mysql u使用者名稱 p密碼 使用者名稱可以用root 密碼沒有可以不設 顯示資料庫 show databases 檢視當前使用的資料庫 select database 建立資料庫 create database 資料庫名 character set utf8 字符集 collate ...