- 积分
- 16841
在线时间 小时
最后登录1970-1-1
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?开始注册
x
mysql> select * from maan ;
* L6 s, I/ N9 L7 \3 q! A+-------+------+-----+-----+
4 t9 }9 H' h9 j9 b$ C3 Y# R| name | sex | age | QQ |
4 K" X# W' d Y' r$ h' R1 e, y( t+-------+------+-----+-----+
1 u2 @5 a+ ^6 e, m| yang3 | man | 22 | 123 |( B3 y" L% a# F- E, h' p
| yang1 | man | 27 | |9 a- S' L3 c2 B* t: q* y
+-------+------+-----+-----+2 C+ \: s- B* J. P1 m7 L, l' C/ O
2 rows in set (0.00 sec); h, m- @) y1 i
mysql> update sichuan.maan set qq="1234561" where name='yang3';
0 H) G; V( \/ NQuery OK, 1 row affected (0.14 sec)% h) H! \7 X( B( P/ y: Z$ `
Rows matched: 1 Changed: 1 Warnings: 0
7 t$ h, l5 e: j4 lmysql> select * from maan ;( I* J. |) g8 {0 Z; X- {2 b
+-------+------+-----+---------+
- ]2 T4 e0 Y0 z# X! q3 A| name | sex | age | QQ |4 U$ W! \- P( \* w6 G! \" h' t
+-------+------+-----+---------+7 `$ ]& I1 O2 c( h+ h
| yang3 | man | 22 | 1234561 |
% {: o* {3 o% v| yang1 | man | 27 | |5 l+ Z' x. u! G$ c" N
+-------+------+-----+---------+! `; f, r0 `0 o3 N' d1 z& q5 u a% O
2 rows in set (0.00 sec)
5 x& P3 Z3 ^# t& z) ?" d |
|