MYSQL-----------實驗一 MySQL的安裝與命令初步
阿新 • • 發佈:2018-12-18
(1)啟動MySQL,並開啟工作管理員檢視服務程序是否已經啟動。
(2) 進入Windows命令列,使用命令登入MySQL伺服器。
(3) 使用show命令檢視當前系統的字符集,並修改其中的兩項後重新檢視。 show variables like 'char%';
set character_set_database = 'jbk'; set character_set_server = 'jbk';
(4) 使用show命令檢視當前伺服器上的資料庫。
show databases ;
(5) 進入mysql資料庫,並檢視mysql資料庫中的表有哪些。
use mysql
show tables;
(6) 建立mytest資料庫。
create database mytest;
(7) 進入mytest資料庫,並建立表user,表中屬性列如下:
Id int auto_increment not null primary key
Username varchar(10) not null
Password varchar(10)not null
use mytest;
create table user
( id int auto_increment not null primary key,
username varchar(10) not null,
password varchar(10)not null
);
show tables;
desc user;
1 Tom 19941216
2 周何俊 19960925 insert into user values(1,'tom','19941216');
insert into user values(2,'周何俊','19960925');
select * from user;
(12) 刪除資料庫mytest。 drop database test;
(2) 進入Windows命令列,使用命令登入MySQL伺服器。
(3) 使用show命令檢視當前系統的字符集,並修改其中的兩項後重新檢視。 show variables like 'char%';
set character_set_database = 'jbk'; set character_set_server = 'jbk';
(4) 使用show命令檢視當前伺服器上的資料庫。
show databases ;
(5) 進入mysql資料庫,並檢視mysql資料庫中的表有哪些。
use mysql
show tables;
(6) 建立mytest資料庫。
create database mytest;
(7) 進入mytest資料庫,並建立表user,表中屬性列如下:
Id int auto_increment not null primary key
Username varchar(10) not null
Password varchar(10)not null
use mytest;
create table user
( id int auto_increment not null primary key,
username varchar(10) not null,
password varchar(10)not null
);
(8) 使用show命令user表檢視是否成功。
show tables;
(9) 使用desc命令檢視user表的詳細資訊。
desc user;
(10) 使用insert命令向user中插入如下記錄:
1 Tom 19941216
2 周何俊 19960925 insert into user values(1,'tom','19941216');
insert into user values(2,'周何俊','19960925');
(11) 使用select命令查看錶中記錄。
select * from user;
(12) 刪除資料庫mytest。 drop database test;