博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL--在表中增加、修改、删除字段 以及常用 命令
阅读量:4294 次
发布时间:2019-05-27

本文共 680 字,大约阅读时间需要 2 分钟。

 

1、增加字段

alter table config add COLUMN key VARCHAR(10) NOT NULL; //增加一个字段,默认不为空alter table config add COLUMN value VARCHAR(20) DEFAULT NULL;//增加一个字段,默认为空

 

2、删除字段

 

alter table config DROP COLUMN value; //删除一个字段

 

3、修改字段

 

alter table config MODIFY key VARCHAR(20);  //修改一个字段的类型 alter table config CHANGE key key1 int; //修改一个字段的名称,此时一定要重新指定该字段的类型

 

4、dump导入(“结构和数据”)

 

sudo /data/mysql/bin/mysql -uroot -p123 mmp(数据库名)< /home/mmp/software/sql/ry.sql;

 

5、远程连接数据库

 

/data/mysql/bin/mysql -h 10.xxx.xxx.250 -P 3306 -u zabbix_select -pzabbix_select

 

6、mysql查询结果输出到文件

 

sudo /data/mysql/bin/mysql -u用户 -p密码 --default-character-set=utf8 -e "select * from test" mmp(数据库名) > /home/test/software/sql/test.txt;

 

转载地址:http://wcyws.baihongyu.com/

你可能感兴趣的文章
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
点击button实现Storyboard中TabBar Controller的tab切换
查看>>
Xcode 的正确打开方式——Debugging
查看>>
打包app出现的一个问题
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>
Expanding User-Defined Runtime Attributes in Xcode with Objective-C
查看>>
iOS7 UITabBar自定义选中图片显示为默认蓝色的Bug
查看>>
提升UITableView性能-复杂页面的优化
查看>>
25 iOS App Performance Tips & Tricks
查看>>
那些好用的iOS开发工具
查看>>
iOS最佳实践
查看>>