mysql命令詳解_第1頁
mysql命令詳解_第2頁
mysql命令詳解_第3頁
mysql命令詳解_第4頁
mysql命令詳解_第5頁
已閱讀5頁,還剩7頁未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、MYSQL 命令大全一、連接MySQL格式: mysql -h 主機(jī)地址 -u 用戶名 p 用戶密碼1、例1:連接到本機(jī)上的MYSQL。首先在打開DOS 窗口,然后進(jìn)入目錄 mysqlbin,再鍵入命令mysql -u root -p ("不許加分號(hào);"),E: enter ("不許加分號(hào);")cd SoftwareMySQL Server 5.0bin enter ("不許加分號(hào);")回車后提示你輸密碼,如果剛安裝好MYSQL,超級(jí)用戶root 是沒有密碼的,故直接回車即可進(jìn)入到MYSQL 中了,MYSQL 的提示符是: mysql

2、>。2、例2:連接到遠(yuǎn)程主機(jī)上的MYSQL。假設(shè)遠(yuǎn)程主機(jī)的IP 為:10,用戶名為root,密碼為abcd123。則鍵入以下命令:mysql -h10 -uroot -pabcd123(注:u 與root 可以不用加空格,其它也一樣)3、退出MYSQL 命令: exit (回車)。二、修改密碼格式:mysqladmin -u 用戶名 -p 舊密碼 password 新密碼1、例1:給root 加個(gè)密碼ab12。首先在DOS 下進(jìn)入目錄mysqlbin,然后鍵入以下命令:mysqladmin -u root -password ab12注

3、:因?yàn)殚_始時(shí)root 沒有密碼,所以-p 舊密碼一項(xiàng)就可以省略了。2、例2:再將root 的密碼改為djg345。mysqladmin -u root -p ab12 password djg345三、增加新用戶。(注意:和上面不同,下面的因?yàn)槭荕ySQL 環(huán)境中的命令,所以后面都帶一個(gè)分號(hào)作為命令結(jié)束符)格式:grant select on 數(shù)據(jù)庫.* to 用戶名登錄主機(jī)identified by "密碼"例1、增加一個(gè)用戶test1 密碼為abc,讓他可以在任何主機(jī)上登錄,并對(duì)所有數(shù)據(jù)庫有查詢、插入、修改、刪除的權(quán)限。首先用以root 用戶連入MySQL,然后鍵入以下

4、命令:grant select,insert,update,delete on *.* to test2localhost identified by "abc"如果你不想test2 有密碼,可以再打一個(gè)命令將密碼消掉。grant select,insert,update,delete on mydb.* to test2localhost identified by ""在上面講了登錄、增加用戶、密碼更改等問題。下面我們來看看MySQL 中有關(guān)數(shù)據(jù)庫方面的操作。注意:你必須首先登錄到MySQL 中,以下操作都是在MySQL 的提示符下進(jìn)行的,而且每個(gè)命

5、令以分號(hào)結(jié)束。1、MySQL 常用命令create database name; 創(chuàng)建數(shù)據(jù)庫use databasename; 選擇數(shù)據(jù)庫drop database name 直接刪除數(shù)據(jù)庫,不提醒show tables; 顯示表describe tablename; 表的詳細(xì)描述select 中加上distinct 去除重復(fù)字段mysqladmin drop database name 刪除數(shù)據(jù)庫前,有提示。顯示當(dāng)前mysql 版本和當(dāng)前日期select version(),current_date;2、修改mysql 中root 的密碼:shell>mysql -u root -pm

6、ysql> update user set password=password(”xueok654123) whereuser=root;mysql> flush privileges /刷新數(shù)據(jù)庫mysql>use dbname; 打開數(shù)據(jù)庫:mysql>show databases; 顯示所有數(shù)據(jù)庫mysql>show tables; 顯示數(shù)據(jù)庫mysql 中所有的表:先use mysql;然后mysql>describe user; 顯示表mysql 數(shù)據(jù)庫中user 表的列信息);3、grant創(chuàng)建一個(gè)可以從任何地方連接服務(wù)器的一個(gè)完全的超級(jí)用戶,但

7、是必須使用一個(gè)口令something 做這個(gè)mysql> grant all privileges on *.* to userlocalhost identifiedby something with增加新用戶格式:grant select on 數(shù)據(jù)庫.* to 用戶名登錄主機(jī) identified by “密碼”GRANT ALL PRIVILEGES ON *.* TO montylocalhost IDENTIFIEDBY something WITH GRANT OPTION;GRANT ALL PRIVILEGES ON *.* TO monty”%” IDENTIFIED

8、BY something WITH GRANT OPTION;刪除授權(quán):mysql> revoke all privileges on *.* from root”%”;mysql> delete from user where user=”root” and host=”%”;mysql> flush privileges;創(chuàng)建一個(gè)用戶custom 在特定客戶端 登錄,可訪問特定數(shù)據(jù)庫fangchandbmysql >grant select, insert, update, delete, create,drop onfangchandb.* to custom i

9、dentified by passwd重命名表:mysql > alter table t1 rename t2;4、mysqldump備份數(shù)據(jù)庫shell> mysqldump -h host -u root -p dbname >dbname_backup.sql恢復(fù)數(shù)據(jù)庫shell> mysqladmin -h myhost -u root -p create dbnameshell> mysqldump -h host -u root -p dbname < dbname_backup.sql如果只想卸出建表指令,則命令如下:shell> my

10、sqladmin -u root -p -d databasename > a.sql如果只想卸出插入數(shù)據(jù)的sql 命令,而不需要建表命令,則命令如下:shell> mysqladmin -u root -p -t databasename > a.sql那么如果我只想要數(shù)據(jù),而不想要什么sql 命令時(shí),應(yīng)該如何操作呢?mysqldump -T./ phptest driver其中,只有指定了-T 參數(shù)才可以卸出純文本文件,表示卸出數(shù)據(jù)的目錄,./表示當(dāng)前目錄,即與mysqldump 同一目錄。如果不指定driver 表,則將卸出整個(gè)數(shù)據(jù)庫的數(shù)據(jù)。每個(gè)表會(huì)生成兩個(gè)文件,一個(gè)為

11、.sql 文件,包含建表執(zhí)行。另一個(gè)為.txt 文件,只包含數(shù)據(jù),且沒有sql 指令。5、可將查詢存儲(chǔ)在一個(gè)文件中并告訴mysql 從文件中讀取查詢而不是等待鍵盤輸入。可利用外殼程序鍵入重定向?qū)嵱贸绦騺硗瓿蛇@項(xiàng)工作。例如,如果在文件my_file.sql 中存放有查詢,可如下執(zhí)行這些查詢:例如,如果您想將建表語句提前寫在sql.txt 中:mysql > mysql -h myhost -u root -p database < sql.txt1、安裝環(huán)境:Windows XPMysql 4.0.17 從 下次就需要用mysql -uroot -proot 才可以登陸在遠(yuǎn)程或本機(jī)可

12、以使用 mysql -h 83 -uroot 登陸,這個(gè)根據(jù)第二行的策略確定權(quán)限修改生效:1)net stop mysqlnet start mysql2)c:mysqlbinmysqladmin flush-privileges3)登陸mysql 后,用flush privileges 語句6、創(chuàng)建數(shù)據(jù)庫staffercreate database staffer;7、下面的語句在mysql 環(huán)境在執(zhí)行顯示用戶擁有權(quán)限的數(shù)據(jù)庫 show databases;切換到staffer 數(shù)據(jù)庫 use staffer;顯示當(dāng)前數(shù)據(jù)庫中有權(quán)限的表 show tables;顯示表sta

13、ffer 的結(jié)構(gòu) desc staffer;8、創(chuàng)建測試環(huán)境1)創(chuàng)建數(shù)據(jù)庫staffermysql> create database staffer2)創(chuàng)建表staffer,department,position,depart_poscreate table s_position(id int not null auto_increment,name varchar(20) not null default '經(jīng)理', #設(shè)定默認(rèn)值description varchar(100),primary key PK_positon (id) #設(shè)定主鍵);create tabl

14、e department(id int not null auto_increment,name varchar(20) not null default '系統(tǒng)部', #設(shè)定默認(rèn)值description varchar(100),primary key PK_department (id) #設(shè)定主鍵);create table depart_pos(department_id int not null,position_id int not null,primary key PK_depart_pos(department_id,position_id) #設(shè)定復(fù)和主鍵);

15、create table staffer(id int not null auto_increment primary key, #設(shè)定主鍵name varchar(20) not null default '無名氏', #設(shè)定默認(rèn)值department_id int not null,position_id int not null,unique (department_id,position_id) #設(shè)定唯一值);3)刪除mysql>drop table depart_pos;drop table department;drop table s_position;d

16、rop table staffer;drop database staffer;9、修改結(jié)構(gòu)mysql>#表position 增加列testalter table position add(test char(10);#表position 修改列testalter table position modify test char(20) not null;#表position 修改列test 默認(rèn)值alter table position alter test set default 'system'#表position 去掉test 默認(rèn)值alter table posi

17、tion alter test drop default;#表position 去掉列testalter table position drop column test;#表depart_pos 刪除主鍵alter table depart_pos drop primary key;#表depart_pos 增加主鍵alter table depart_pos add primary key PK_depart_pos(department_id,position_id);10、操作數(shù)據(jù)#插入表departmentinsert into department(name,description)

18、 values('系統(tǒng)部','系統(tǒng)部');insert into department(name,description) values('公關(guān)部','公關(guān)部');insert into department(name,description) values('客服部','客服部');insert into department(name,description) values('財(cái)務(wù)部','財(cái)務(wù)部');insert into department(name,desc

19、ription) values('測試部','測試部');#插入表s_positioninsert into s_position(name,description) values('總監(jiān)','總監(jiān)');insert into s_position(name,description) values('經(jīng)理','經(jīng)理');insert into s_position(name,description) values('普通員工','普通員工');#插入表depart_p

20、osinsert into depart_pos(department_id,position_id)select a.id department_id,b.id postion_idfrom department a,s_position b;#插入表stafferinsert into staffer(name,department_id,position_id) values('陳達(dá)治',1,1);insert into staffer(name,department_id,position_id) values('李文賓',1,2);insert int

21、o staffer(name,department_id,position_id) values('馬佳',1,3);insert into staffer(name,department_id,position_id) values('亢志強(qiáng)',5,1);insert into staffer(name,department_id,position_id) values('楊玉茹',4,1);11、查詢及刪除操作#顯示系統(tǒng)部的人員和職位select , department_name, position_na

22、mefrom staffer a,department b,s_position cwhere a.department_id=b.id and a.position_id=c.id and ='系統(tǒng)部'#顯示系統(tǒng)部的人數(shù)select count(*) from staffer a,department bwhere a.department_id=b.id and ='系統(tǒng)部'#顯示各部門的人數(shù)select count(*) cou,from staffer a,department bwhere a.department_

23、id=b.idgroup by ;#刪除客服部delete from department where name='客服部'#將財(cái)務(wù)部修改為財(cái)務(wù)一部update department set name='財(cái)務(wù)一部' where name='財(cái)務(wù)部'12、備份和恢復(fù)備份數(shù)據(jù)庫stafferc:mysqlbinmysqldump -uroot -proot staffer>e:staffer.sql得到的staffer.sql 是一個(gè)sql 腳本,不包括建庫的語句,所以你需要手工創(chuàng)建數(shù)據(jù)庫才可以導(dǎo)入恢復(fù)數(shù)據(jù)庫staffer,需要?jiǎng)?chuàng)建

24、一個(gè)空庫stafferc:mysqlbinmysql -uroot -proot staffer<staffer.sql如果不希望后來手工創(chuàng)建staffer,可以c:mysqlbinmysqldump -uroot -proot -databasesstaffer>e:staffer.sqlmysql -uroot -proot >e:staffer.sql但這樣的話系統(tǒng)種就不能存在staffer 庫,且無法導(dǎo)入其他名字的數(shù)據(jù)庫,當(dāng)然你可以手工修改staffer.sql 文件13、從文本向數(shù)據(jù)庫導(dǎo)入數(shù)據(jù)1)使用工具c:mysqlbinmysqlimport這個(gè)工具的作用是將文

25、件導(dǎo)入到和去掉文件擴(kuò)展名名字相同的表里,如staffer.txt,staffer 都是導(dǎo)入到staffer 表中常用選項(xiàng)及功能如下-d or -delete 新數(shù)據(jù)導(dǎo)入數(shù)據(jù)表中之前刪除數(shù)據(jù)數(shù)據(jù)表中的所有信息-f or -force 不管是否遇到錯(cuò)誤,mysqlimport 將強(qiáng)制繼續(xù)插入數(shù)據(jù)-i or -ignore mysqlimport 跳過或者忽略那些有相同唯一關(guān)鍵字的行, 導(dǎo)入文件中的數(shù)據(jù)將被忽略。-l or -lock-tables 數(shù)據(jù)被插入之前鎖住表,這樣就防止了,你在更新數(shù)據(jù)庫時(shí),用戶的查詢和更新受到影響。-r or -replace 這個(gè)選項(xiàng)與i 選項(xiàng)的作用相反;此選項(xiàng)將替代

26、表中有相同唯一關(guān)鍵字的記錄。-fields-enclosed- by= char指定文本文件中數(shù)據(jù)的記錄時(shí)以什么括起的, 很多情況下數(shù)據(jù)以雙引號(hào)括起。 默認(rèn)的情況下數(shù)據(jù)是沒有被字符括起的。-fields-terminated- by=char指定各個(gè)數(shù)據(jù)的值之間的分隔符,在句號(hào)分隔的文件中,分隔符是句號(hào)。您可以用此選項(xiàng)指定數(shù)據(jù)之間的分隔符。默認(rèn)的分隔符是跳格符(Tab)-lines-terminated- by=str此選項(xiàng)指定文本文件中行與行之間數(shù)據(jù)的分隔字符串或者字符。 默認(rèn)的情況下mysqlimport 以newline 為行分隔符。您可以選擇用一個(gè)字符串來替代一個(gè)單個(gè)的字符:一個(gè)新行或

27、者一個(gè)回車。mysqlimport 命令常用的選項(xiàng)還有-v 顯示版本(version),-p 提示輸入密碼(password)等。這個(gè)工具有個(gè)問題,無法忽略某些列,這樣對(duì)我們的數(shù)據(jù)導(dǎo)入有很大的麻煩,雖然可以手工設(shè)置這個(gè)字段,但會(huì)出現(xiàn)莫名其妙的結(jié)果,我們做一個(gè)簡單的示例我們定義如下的depart_no.txt,保存在e 盤,間隔為制表符t10 1011 1112 24執(zhí)行如下命令c:mysqlbinmysqlimport -uroot -proot staffere:depart_pos.txt在這里沒有使用列的包圍符號(hào),分割采用默認(rèn)的t,因?yàn)椴捎脛e的符號(hào)會(huì)有問題,不知道是不是windows 的

28、原因2)Load Data INFILE file_name intotable_name(column1_name,column2_name)這個(gè)命令在mysql>提示符下使用,優(yōu)點(diǎn)是可以指定列導(dǎo)入,示例如下c:mysqlbinmysql -uroot -proot staffermysql>load data infile "e:/depart_no.txt" intodepart_no(department_id,position_id);這兩個(gè)工具在Windows 下使用都有問題,不知道是Windows 的原因還是中文的問題,而且不指定的列它產(chǎn)生了空值,

29、這顯然不是我們想要的,所以謹(jǐn)慎使用這些工具進(jìn)入MySQL:mysql -uuser -ppassword -port=33071:使用SHOW 語句找出在服務(wù)器上當(dāng)前存在什么數(shù)據(jù)庫:mysql> SHOW DATABASES;2:2、創(chuàng)建一個(gè)數(shù)據(jù)庫MYSQLDATAmysql> Create DATABASE MYSQLDATA;3:選擇你所創(chuàng)建的數(shù)據(jù)庫mysql> USE MYSQLDATA; (按回車鍵出現(xiàn)Database changed 時(shí)說明操作成功!)4:查看現(xiàn)在的數(shù)據(jù)庫中存在什么表mysql> SHOW TABLES;5:創(chuàng)建一個(gè)數(shù)據(jù)庫表mysql>

30、Create TABLE MYTABLE (name VARCHAR(20), sex CHAR(1);6:顯示表的結(jié)構(gòu):mysql> DESCRIBE MYTABLE;7:往表中加入記錄mysql> insert into MYTABLE values ("hyq","M");8:用文本方式將數(shù)據(jù)裝入數(shù)據(jù)庫表中(例如D:/mysql.txt)mysql> LOAD DATA LOCAL INFILE "D:/mysql.txt" INTO TABLE MYTABLE;9:導(dǎo)入.sql 文件命令(例如D:/mysql

31、.sql)mysql>use database;mysql>source d:/mysql.sql;10:刪除表mysql>drop TABLE MYTABLE;11:清空表mysql>delete from MYTABLE;12:更新表中數(shù)據(jù)mysql>update MYTABLE set sex="f" where name='hyq'UPDATE LOW_PRIORITY IGNORE tbl_nameSET col_name1=expr1 , col_name2=expr2 .WHERE where_definition

32、ORDER BY .LIMIT rowsorUPDATE LOW_PRIORITY IGNORE tbl_name , tbl_name .SET col_name1=expr1 , col_name2=expr2 .WHERE where_definitionUPDATE 以新的值更新現(xiàn)存表中行的列。SET 子句指出要修改哪個(gè)列和他們應(yīng)該給定的值。WHERE子句如果被給出,指定哪個(gè)記錄行應(yīng)該被更新。否則,所有的記錄行被更新。如果 ORDER BY 子句被指定,記錄行將被以指定的次序更新。如果你指定關(guān)鍵詞 LOW_PRIORITY,UPDATE 的執(zhí)行將被延遲,直到?jīng)]有其它的客戶端正在讀取表。

33、如果你指定關(guān)鍵詞 IGNORE,該更新語句將不會(huì)異常中止,即使在更新過程中出現(xiàn)重復(fù)鍵錯(cuò)誤。導(dǎo)致沖突的記錄行將不會(huì)被更新。如果在一個(gè)表達(dá)式中從 tbl_name 中訪問一個(gè)列,UPDATE 使用列的當(dāng)前值。舉例來說,下面的語句設(shè)置 age 列值為它的當(dāng)前值加 1 :mysql> UPDATE persondata SET age=age+1;UPDATE 賦值是從左到右計(jì)算的。舉例來說,下列語句將 age 列設(shè)置為它的兩倍,然后再加 1 :mysql> UPDATE persondata SET age=age*2, age=age+1;如果你設(shè)置列為其當(dāng)前的值,MySQL 注意到這

34、點(diǎn),并不更新它。UPDATE 返回實(shí)際被改變的記錄行數(shù)目。在 MySQL 3.22 或更新的版本中,C API 函數(shù) mysql_info()返回被匹配并更新的記錄行數(shù)目,以及在 UPDATE 期間發(fā)生的警告的數(shù)目。在 MySQL 3.23 中,你可以使用 LIMIT # 來確保只有給定的記錄行數(shù)目被更改。如果一個(gè) ORDER BY 子句被使用(從 MySQL 4.0.0 開始支持),記錄行將以指定的次序被更新。這實(shí)際上只有連同 LIMIT一起才有用。從 MySQL 4.0.4 開始,你也可以執(zhí)行一個(gè)包含多個(gè)表的 UPDATE 的操作:UPDATE items,month SET items.

35、price=month.priceWHERE items.id=month.id;注意:多表 UPDATE 不可以使用 ORDER BY 或 LIMIT。關(guān)鍵字: mysql啟動(dòng):net start mySql;進(jìn)入:mysql -u root -p/mysql -h localhost -u root -p databaseName;列出數(shù)據(jù)庫:show databases;選擇數(shù)據(jù)庫:use databaseName;列出表格:show tables;顯示表格列的屬性:show columns from tableName;建立數(shù)據(jù)庫:source fileName.txt;匹配字符:可以

36、用通配符_代表任何一個(gè)字符,代表任何字符串;增加一個(gè)字段:alter table tabelName add column fieldNamedateType;增加多個(gè)字段:alter table tabelName add column fieldName1dateType,add columns fieldName2 dateType;多行命令輸入:注意不能將單詞斷開;當(dāng)插入或更改數(shù)據(jù)時(shí),不能將字段的字符串展開到多行里,否則硬回車將被儲(chǔ)存到數(shù)據(jù)中;增加一個(gè)管理員帳戶:grant all on *.* to userlocalhost identifiedby "password&

37、quot;每條語句輸入完畢后要在末尾填加分號(hào)'',或者填加'g'也可以;查詢時(shí)間:select now();查詢當(dāng)前用戶:select user();查詢數(shù)據(jù)庫版本:select version();查詢當(dāng)前使用的數(shù)據(jù)庫:select database();1、刪除student_course 數(shù)據(jù)庫中的students 數(shù)據(jù)表:rm -f student_course/students.*2、備份數(shù)據(jù)庫:(將數(shù)據(jù)庫test 備份)mysqldump -u root -p test>c:test.txt備份表格:(備份test 數(shù)據(jù)庫下的mytable 表

38、格)mysqldump -u root -p test mytable>c:test.txt將備份數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫:(導(dǎo)回test 數(shù)據(jù)庫)mysql -u root -p test3、創(chuàng)建臨時(shí)表:(建立臨時(shí)表zengchao)create temporary table zengchao(name varchar(10);4、創(chuàng)建表是先判斷表是否存在create table if not exists students();5、從已經(jīng)有的表中復(fù)制表的結(jié)構(gòu)create table table2 select * from table1 where 1<>1;6、復(fù)制表crea

39、te table table2 select * from table1;7、對(duì)表重新命名alter table table1 rename as table2;8、修改列的類型alter table table1 modify id int unsigned;/修改列id 的類型為int unsignedalter table table1 change id sid int unsigned;/修改列id 的名字為sid,而且把屬性修改為int unsigned9、創(chuàng)建索引alter table table1 add index ind_id (id);create index ind_i

40、d on table1 (id);create unique index ind_id on table1 (id);/建立唯一性索引10、刪除索引drop index idx_id on table1;alter table table1 drop index ind_id;11、聯(lián)合字符或者多個(gè)列(將列id 與":"和列name 和"="連接)select concat(id,':',name,'=') from students;12、limit(選出10 到20 條)<第一個(gè)記錄集的編號(hào)是0>selec

41、t * from students order by id limit 9,10;13、MySQL 不支持的功能事務(wù),視圖,外鍵和引用完整性,存儲(chǔ)過程和觸發(fā)器14、MySQL 會(huì)使用索引的操作符號(hào)<,<=,>=,>,=,between,in,不帶%或者_(dá)開頭的like15、使用索引的缺點(diǎn)1)減慢增刪改數(shù)據(jù)的速度;2)占用磁盤空間;3)增加查詢優(yōu)化器的負(fù)擔(dān);當(dāng)查詢優(yōu)化器生成執(zhí)行計(jì)劃時(shí),會(huì)考慮索引,太多的索引會(huì)給查詢優(yōu)化器增加工作量,導(dǎo)致無法選擇最優(yōu)的查詢方案;16、分析索引效率方法:在一般的SQL 語句前加上explain;分析結(jié)果的含義:1)table:表名;2)type:連接的類型,(ALL/Range/Ref)。其中ref 是最理想的;3)possible_keys:查詢可以利用的索引名;4)key:實(shí)際使用的索引;5)key_len:索引中被使用部分的長度(字節(jié));6)ref:顯示列名字或者"const"(不明白什

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論