资源描述:
《MySQL 语法大全》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、MySQL语法大全select*fromemp;#注释#---------------------------#----命令行连接MySql---------#启动mysql服务器netstartmysql#关闭netstopmysql#进入mysql-h主机地址-u用户名-p用户密码#退出exit#---------------------------#----MySql用户管理---------#修改密码:首先在DOS下进入mysql安装路径的bin目录下,然后键入以下命令:mysqladmin-ur
2、oot-p123password456;#增加用户#格式:grant权限on数据库.*to用户名@登录主机identifiedby'密码'/*如,增加一个用户user1密码为password1,让其可以在本机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入mysql,然后键入以下命令:grantselect,insert,update,deleteon*.*touser1@localhostIdentifiedby"password1";如果希望该用户能够在任何机器上登陆my
3、sql,则将localhost改为"%"。如果你不想user1有密码,可以再打一个命令将密码去掉。grantselect,insert,update,deleteonmydb.*touser1@localhostidentifiedby"";*/grantallprivilegesonwpj1105.*tosunxiao@localhostidentifiedby'123';#allprivileges所有权限#----------------------------#-----MySql数据库操作基础-
4、----#显示数据库showdatabases;#判断是否存在数据库wpj1105,有的话先删除dropdatabaseifexistswpj1105;#创建数据库createdatabasewpj1105;#删除数据库dropdatabasewpj1105;#使用该数据库usewpj1105;#显示数据库中的表showtables;#先判断表是否存在,存在先删除droptableifexistsstudent;#创建表createtablestudent(idintauto_incrementprima
5、rykey,namevarchar(50),sexvarchar(20),datevarchar(50),contentvarchar(100))defaultcharset=utf8;#删除表droptablestudent;#查看表的结构describestudent;#可以简写为descstudent;#插入数据insertintostudentvalues(null,'aa','男','1988-10-2','......');insertintostudentvalues(null,'bb','
6、女','1889-03-6','......');insertintostudentvalues(null,'cc','男','1889-08-8','......');insertintostudentvalues(null,'dd','女','1889-12-8','......');insertintostudentvalues(null,'ee','女','1889-09-6','......');insertintostudentvalues(null,'ff','null','1889-09-
7、6','......');#查询表中的数据select*fromstudent;selectid,namefromstudent;#修改某一条数据updatestudentsetsex='男'whereid=4;#删除数据deletefromstudentwhereid=5;#and且select*fromstudentwheredate>'1988-1-2'anddate<'1988-12-1';#or或select*fromstudentwheredate<'1988-11-2'ordate>'198
8、8-12-1';#betweenselect*fromstudentwheredatebetween'1988-1-2'and'1988-12-1';#in查询制定集合内的数据select*fromstudentwhereidin(1,3,5);#排序asc升序desc降序select*fromstudentorderbyidasc;#分组查询#聚合函数selectmax(id),name,sexfromstudentgrou