当前位置: 技术问答>linux和unix
linux使用mysql删除数据库的问题,谢谢!
来源: 互联网 发布时间:2016-06-17
本文导语: linux使用mysql删除数据库的问题,谢谢! 在数据库中,如下: mysql> select *from TBbook1; +--------+------+-------+ |number|name|money| +--------+------+-------+ | 3 | cc | 12 | | 4 | dd | ...
linux使用mysql删除数据库的问题,谢谢!
在数据库中,如下:
mysql> select *from TBbook1;
+--------+------+-------+
|number|name|money|
+--------+------+-------+
| 3 | cc | 12 |
| 4 | dd | 30 |
+--------+------+-------+
如果我要删除number为4的数据,怎么写呢?谢谢!
在数据库中,如下:
mysql> select *from TBbook1;
+--------+------+-------+
|number|name|money|
+--------+------+-------+
| 3 | cc | 12 |
| 4 | dd | 30 |
+--------+------+-------+
如果我要删除number为4的数据,怎么写呢?谢谢!
|
DELETE FORM TBbook1
WHERE number = 4;
|
SQL语句好像跟平台无关吧,
资料很丰富的呀。
楼主不会又要用shell脚本实现吧?
资料很丰富的呀。
楼主不会又要用shell脚本实现吧?
|
在MySQL命令提示符下输入:
delete from TBbook1 where number=4
就可以了
delete from TBbook1 where number=4
就可以了