欢迎来到天天文库
浏览记录
ID:23119617
大小:95.00 KB
页数:15页
时间:2018-11-04
《mysql添加字段语句》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、mysql添加字段语句mysql语句用法,添加、修改、删除字段一,连接MySQL格式:mysql-h远程主机地址-u用户名-p回车输入密码进入:mysql-uroot-p回车Enterpassysql>退出命令:>exit或者ctrl+D二,MySQL管理与授权1.修改密码:格式:mysqladmin-u用户名-p旧密码passysqladmin-urootpassysql-uroot-p回车输入密码,成功登陆.将原有的mysql管理登陆密码52seek改为52china.#mysqladmin-uroot-p52seekpassysql
2、>createdatabasephpbb;QueryOK,1roysql>usephpbb;Databasechangedmysql>grantcreate,select,update,insert,delete,alter->onphpbb.*->tophpbbrootlocalhostidentifiedby'52seek';QueryOK,0rophpbbrootlocalhostidentifiedby'52seek';完全将phpbbroot这个用户删除:>usemysql
3、>deletefromuserysqltest2.使其成为当前操作数据库>usemysql;打开数据库.>shoysql数据库中的数据表.3.显示数据表的表结构:>describe表名;>describeuser;显示user表的表结构:4.创建数据库,建表>createdatabase数据库名;>use数据库名;>createtable表名(字段设定列表)5.删除数据库,册除表>dropdatabase数据库名;>droptable表名;6.显示表中的记录;select*from表名;7.
4、修改数据库结构:增加字段:altertabledbnameaddcolumn<字段名><字段选项>修改字段:altertabledbnamechange<旧字段名><新字段名><选项>删除字段:altertabledbnamedropcolumn<字段名>实例操作:>createdatabaseoffice;>useoffice;mysql>createtablepersonal(->member_nochar(5)notnull,->namecha
5、r(15),->birthdaydate,->exam_scoretinyint,->primarykey(member_no)->);QueryOK,0roember_no
6、char(5)
7、
8、PRI
9、
10、
11、
12、name
13、char(
14、YES
15、
16、NULL
17、
18、
19、birthday
20、date
21、YES
22、
23、NULL
24、
25、
26、exam_score
27、tinyint(4)
28、YES
29、
30、NULL
31、
32、+------------+------------+------+-----+---------+-------+4roysql>select*from
33、personal;+-----------+---------+------------+------------+
34、member_no
35、name
36、birthday
37、exam_score
38、+-----------+---------+------------+------------+
39、001
40、seek
41、1983-03-15
42、95
43、
44、002
45、heihei
46、1982-02-24
47、90
48、
49、003
50、gogo
51、1985-05-21
52、85
53、
54、004
55、haha
56、1984-02-25
57、84
58、
59、005
60、linlin
61、1982-04-28
62、85
63、
64、006
65、xinxin
66、
67、1985-03-15
68、75
69、+-----------+---------+------------+------------+修改数据库表:要求:在birthday这后增加一个为height的字段,数据类型为tinyint.将字段exam_score改名为scores,数据类型不变>altertablepersonal->addcolumnheighttinyintafterbirthday,->changecolumnexam_scorescorestinyint;mysql>select*frompersonal;+--
70、---------+---------+------------+--------+--------+
71、me
此文档下载收益归作者所有