程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> MYSQL數據庫基礎命令

MYSQL數據庫基礎命令

編輯:關於MYSQL數據庫

  MySQL數據庫常用命令:

  啟動MySQL數據庫

  C:>cd MySQL5.0in

  C:Mysql5.0in>mysqld –install 安裝MySQL服務

  C:Mysql5.0in>net start mysql 啟動MySQL服務

  請求的服務已經啟動。

  連接MySQL

  用戶須要提供MySQL的用戶名和密碼來連接服務器,要是服務器不是在本機,則還須要一個主機名或IP來指定服務器的位子。

  C:Mysql5.0in>MySQL -h localhost -u root -p

  Enter passWord: ****

  Welcome to the MySQL monitor. Commands end with ; or g.

  Your MySQL connection id is 6 to server version: 5.0.18-nt

  Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

  MySQL>

  使用一條簡單的查詢語句

  MySQL> select version(),current_date;

  MySQL> select version();select now();

  新建或刪除一個數據庫

  MySQL>create database mydb;

  MySQL> drop database mydb;

  打開的數據庫的命令

  mysql> use MySQL

  Database changed

  察看數據庫的命令

  MySQL> show databases;

  查看數據表的詳盡結構

  MySQL> desc func;

  新建數據庫

  MySQL> create database school;

  Query OK, 1 row affected (0.00 sec)

  新建表

  MySQL> create table user01(

  -> id varchar(20) NOT NULL,

  -> userName varchar(10) NOT NULL,

  -> age int(11) default'0',

  -> sex char(2) NOT NULL default'm',

  -> PRIMARY KEY (id)

  -> )TYPE=InnoDB;

  Query OK, 0 rows affected, 1 warning (0.02 sec)MySQL>desc student;

  插入和刪除表中的數據

  Create table student(stuName varchar(20),age varchar(20),id varchar(20),set0 char(1));

  插入

  MySQL> insert into student(id,stuName) values('1','tomcat');

  Query OK, 1 row affected (0.00 sec)

  刪除

  MySQL> delete from student where id='1';

  Query OK, 1 row affected (0.01 sec)

  刪除表中所有數據

  MySQL> truncate table student;

  Query OK, 1 row affected (0.01 sec)

  刪除表

  MySQL> create table temp(t varchar(1));

  Query OK, 0 rows affected (0.00 sec)

  MySQL> drop table temp;

  Query OK, 0 rows affected (0.00 sec)

  創建新用戶並給予權限

  MySQL> grant all privileges on *.* to dbuser@localhost identifIEd by '1234'

  with grant option;

  更改MySQL用戶密碼

  c:Mysql5.0in>MySQLadmin -u root -p passWord 1234

  Enter passWord: ****

  備份數據庫及表

  我們用MySQLdump命令來備份數據庫

  c:mysqlin>mysqldump –u root –p 3306 MySQL>d:ackup.sql

  執行此語句將把mydb 備份到D盤的backup.sql文件中

  備份多個數據庫表

  c:mysqlin>MySQLdump –u root –p 3306 school user01 user >d:ackup.sql

  此句的意思是把school庫中的user01表和user表的內容和表的定義備份到D盤backup.sql文件中。

  備份所有的數據庫

  c:myqlin>MySQLdump –u root –p 3306 –all –database>d:backup.sql

  還原MySQL數據庫

  c:mysqlinMySQL –u root –p 3306 school

  還原其中的一個表

  MySQL> source d:ooks.sql;

  ERROR:

  Unknown command ''.

  Query OK, 0 rows affected (0.00 sec)

  Query OK, 1 row affected (0.00 sec)

  退出MySQL聯接

  MySQL>quit(exit)

  關閉MySQL服務

  C:mysqlin>net MySQL

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved