亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學習啦 > 學習電腦 > 操作系統(tǒng) > Linux教程 > linux查詢數(shù)據(jù)庫命令

      linux查詢數(shù)據(jù)庫命令

      時間: 佳洲1085 分享

      linux查詢數(shù)據(jù)庫命令

        在linux系統(tǒng)中有相關的命令可以讓我們對mysql數(shù)據(jù)庫做相關的操作,那么具體是哪些命令呢?下面由學習啦小編為大家整理了linux查詢數(shù)據(jù)庫命令的相關知識,希望對大家有幫助!

        1.linux查看數(shù)據(jù)庫的命令

        mysql> show databases;

        查看數(shù)據(jù)表的詳細結構

        mysql> desc funtb;

        2.linux操作數(shù)據(jù)庫的相關命令

        新建數(shù)據(jù)庫

        mysql> create database school;

        新建表

        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;

        插入

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

        刪除

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

        刪除表中所有數(shù)據(jù)

        mysql> truncate table student;

        刪除表

        mysql> drop table temp;

        創(chuàng)建新用戶并給予權限

        mysql> grant all privileges on *.* to dbuser@localhost identified by '1234'

        with grant option;

        更改Mysql用戶密碼

        c:\Mysql5.0\bin>mysqladmin -u root -p password 1234

        Enter password: ****

        備份數(shù)據(jù)庫及表(新版數(shù)據(jù)庫不加3306端口號)

        c:\mysql\bin\>mysqldump –u root –p mydb >d:\backup.sql

        執(zhí)行此語句將把數(shù)據(jù)庫mydb 備份到D盤的backup.sql文件中

        備份多個數(shù)據(jù)庫表

        c:\mysql\bin\>mysqldump –u root –p 3306 school user01 user >d:\backup.sql

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

        備份所有的數(shù)據(jù)庫

        c:\myql\bin>mysqldump –u root –p 3306 –all –database>d:backup.sql

        還原Mysql數(shù)據(jù)庫

        c:\mysql\bin\mysql –u root –p 3306 school

        還原其中的一個表

        mysql> source d:\books.sql;

        退出Mysql連接

        mysql>quit(exit)

        windows關閉mysql服務

        C:\mysql\bin>net mysql

      3590432