资源描述:
《mysql学习笔记-案例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、num_from_employee第4章MySQL数据类型mysql>USETEST;Databasechangedmysql>CREATETABLEintdata(->aTINYINT(4),->bSMALLINT(6),->cMEDIUMINT(9),->dINT(11),->eBIGINT(20));QueryOK,0rowsaffected(0.41sec)mysql>DESCintdata;+-------+--------------+------+-----+---------+-------+
2、Field
3、Type
4、Null
5、Key
6、De
7、fault
8、Extra
9、+-------+--------------+------+-----+---------+-------+
10、a
11、tinyint(4)
12、YES
13、
14、NULL
15、
16、
17、b
18、smallint(6)
19、YES
20、
21、NULL
22、
23、
24、c
25、mediumint(9)
26、YES
27、
28、NULL
29、
30、
31、d
32、int(11)
33、YES
34、
35、NULL
36、
37、
38、e
39、bigint(20)
40、YES
41、
42、NULL
43、
44、+-------+--------------+------+-----+---------+-------+5rowsinset(0.01sec)mysql>INSERTIN
45、TOintdataVALUES(1,1,1,1,1);QueryOK,1rowaffected(0.37sec)mysql>SELECT*FROMintdata;+------+------+------+------+------+
46、a
47、b
48、c
49、d
50、e
51、+------+------+------+------+------+
52、1
53、1
54、1
55、1
56、1
57、+------+------+------+------+------+1rowinset(0.03sec)mysql>CREATETABLEintdata2(->aTINYINT(3)UNSIGNEDZERO
58、FILL,->bSMALLINT(5)UNSIGNEDZEROFILL,->cMEDIUMINT(8)UNSIGNEDZEROFILL,->dINT(10)UNSIGNEDZEROFILL,->eBIGINT(20)UNSIGNEDZEROFILL);QueryOK,0rowsaffected(0.38sec)mysql>DROPTABleintdata1;QueryOK,0rowsaffected(0.03sec)mysql>ALTERTABLEintdata2RENAMEintdata1;QueryOK,0rowsaffected(0.34sec)m
59、ysql>DESCintdata1;+-------+--------------------------------+------+-----+---------+-------+
60、Field
61、Type
62、Null
63、Key
64、Default
65、Extra
66、+-------+--------------------------------+------+-----+---------+-------+
67、a
68、tinyint(3)unsignedzerofill
69、YES
70、
71、NULL
72、
73、
74、b
75、smallint(5)unsignedzerofill
76、YES
77、
78、NULL
79、
80、
81、
82、c
83、mediumint(8)unsignedzerofill
84、YES
85、
86、NULL
87、
88、
89、d
90、int(10)unsignedzerofill
91、YES
92、
93、NULL
94、
95、
96、e
97、bigint(20)unsignedzerofill
98、YES
99、
100、NULL
101、
102、+-------+--------------------------------+------+-----+---------+-------+5rowsinset(0.01sec)mysql>INSERTINTOintdata1VALUES(1,1,1,1,1);QueryOK,1rowaffected(0
103、.03sec)mysql>SELECT*FROMintdata1;+------+-------+----------+------------+----------------------+
104、a
105、b
106、c
107、d
108、e
109、+------+-------+----------+------------+----------------------+
110、001
111、00001
112、00000001
113、0000000001
114、00000000000000000001
115、+------+-------+----------+------------+------------------
116、----+1rowinset(0.00sec)mysql>CREATETABLE