欢迎来到天天文库
浏览记录
ID:34724658
大小:84.18 KB
页数:7页
时间:2019-03-10
《mysql数据库命令大全》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、MySQL数据库命令大全启动:netstartmySql; 进入:mysql-uroot-p/mysql-hlocalhost-uroot-pdatabaseName; 列出数据库:showdatabases; 选择数据库:usedatabaseName; 列出表格:showtables; 显示表格列的属性:showcolumnsfromtableName; 建立数据库:sourcefileName.txt; 匹配字符:可以用通配符_代表任何一个字符,%代表任何字符串; 增加一个字段:altertabletabelNameaddcolumnfieldNamedateType;
2、 增加多个字段:altertabletabelNameaddcolumnfieldName1dateType,addcolumnsfieldName2dateType; 多行命令输入:注意不能将单词断开;当插入或更改数据时,不能将字段的字符串展开到多行里,否则硬回车将被储存到数据中; 增加一个管理员帐户:grantallon*.*touser@localhostidentifiedby"password"; 每条语句输入完毕后要在末尾填加分号';',或者填加'g'也可以; 查询时间:selectnow(); 查询当前用户:selectuser(); 查询数据库版本:select
3、version(); 查询当前使用的数据库:selectdatabase(); 1、删除student_course数据库中的students数据表: rm-fstudent_course/students.* 2、备份数据库:(将数据库test备份)mysqldump–uroot-ptest>c:test.txt(注意是在dos窗口(cmd)下输入才行,如果不行的话,看看MySQL的ben是不是未配置使用setpath查看环境变量的配置) 备份表格:(备份test数据库下的mytable表格) mysqldump-uroot-ptestmytable>c:test.t
4、xt 将备份数据导入到数据库:(导回test数据库) mysql-uroot-ptest1; 6、复制表 createtabletable2select*fromtable1;
5、 7、对表重新命名 altertabletable1renameastable2; 8、修改列的类型 altertabletable1modifyidintunsigned;//修改列id的类型为intunsigned altertabletable1changeidsidintunsigned;//修改列id的名字为sid,而且把属性修改为intunsigned 9、创建索引 altertabletable1addindexind_id(id); createindexind_idontable1(id); createuniqueindexind_idont
6、able1(id);//建立唯一性索引 10、删除索引 dropindexidx_idontable1; altertabletable1dropindexind_id; 11、联合字符或者多个列(将列id与":"和列name和"="连接) selectconcat(id,':',name,'=')fromstudents; 12、limit(选出10到20条)<第一个记录集的编号是0> select*fromstudentsorderbyidlimit9,10; 13、MySQL不支持的功能事务,视图,外键和引用完整性,存储过程和触发器13(New)检索符合
7、条件的前十条 SELECT*FROMaccount_infoorderbyaccountIDdesclimit0,10; 14、MySQL会使用索引的操作符号 <,<=,>=,>,=,between,in,不带%或者_开头的like 15、使用索引的缺点 1)减慢增删改数据的速度; 2)占用磁盘空间; 3)增加查询优化器的负担; 当查询优化器生成执行计划时,会考虑索引,太多的索引会给查
此文档下载收益归作者所有