reference :
1:使用show語句找出在伺服器上當前存在什麼資料庫:
mysql> show databases;
2:2、建立乙個資料庫mysqldata
mysql> create database mysqldata;
3:選擇你所建立的資料庫
mysql> use mysqldata; (按回車鍵出現database changed 時說明操作成功!)
4:檢視現在的資料庫中存在什麼表
mysql> show tables;
5:建立乙個資料庫表
mysql> create table mytable (name varchar(20), *** char(1));
6:顯示表的結構:
mysql> describe mytable;
7:往表中加入記錄
mysql> insert into mytable values (」hyq」,」m」);
8:用文字方式將資料裝入資料庫表中(例如d:/mysql.txt)
mysql> load data local infile 「d:/mysql.txt」 into table mytable;
9:匯入.sql檔案命令(例如d:/mysql.sql)
mysql>use database;
mysql>source d:/mysql.sql;
10:刪除表
mysql>drop table mytable;
11:清空表
mysql>delete from mytable;
12:更新表中資料
mysql>update mytable set ***=」f」 where name=』hyq』;
mysql 使用 MySQL 基本使用
資料庫 create database 名字 建立資料庫 show databases 檢視所有資料庫 show create database book g 檢視建立好的資料庫的定義 drop database if exists 名字 刪除資料庫 use 名字 使用資料庫 引擎 show eng...
MySQL基本使用
mysql 是最流行的關係型資料庫管理系統,在 web 應用方面 mysql 是最好的 rdbms relational database management system 關聯式資料庫管理系統 應用軟體之一。今天剛好又接觸到了mysql,有一些相關知識和語句不常用會容易忘記,在這裡記錄一下。方法...
MySQL基本使用
檢視所有資料庫 show databases 使用資料庫 use 資料庫名 檢視當前使用的資料庫 select database 建立資料庫 create database 資料庫名 charset utf8 例 create database python charset utf8 刪除資料庫 d...