1.输入 sudo apt-get install mysql-server

2.继续执行后,需要设定MySQL密码。

3.再次输入密码。

4.之后就安装成功了,输入mysql -u root -p进行登陆。

如果已经出现如上界面,那么mysql就可使用了

DROP TABLE IF EXISTS `t_org`;
CREATE TABLE `t_org` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`descr` varchar(255) DEFAULT NULL,
`iconCls` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`note` varchar(255) DEFAULT NULL,
`sn` varchar(255) DEFAULT NULL,
`tel` varchar(255) DEFAULT NULL,
`operator_id` int(11) DEFAULT NULL,
`parent_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `FK68F84994394CAB3` (`operator_id`),
KEY `FK68F8499A656A33D` (`parent_id`),
CONSTRAINT `FK68F84994394CAB3` FOREIGN KEY (`operator_id`) REFERENCES `t_admin` (`id`),
CONSTRAINT `FK68F8499A656A33D` FOREIGN KEY (`parent_id`) REFERENCES `t_org` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

最新文章

  1. jboss设置图片上传大小
  2. clip to bounds 和mask to bounds的区别
  3. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
  4. 2016 - 1 -17 GCD主队列与全局队列
  5. 【转】C# 重写WndProc 拦截 发送 系统消息 + windows消息常量值(1)
  6. 算法篇——Cantor的数表
  7. 带你初识Angular中MVC模型
  8. angular分页指令
  9. 带参数的查询防止SQL注入攻击
  10. Swiper的简单实用方法
  11. HDU 4611Balls Rearrangement(思维)
  12. 201521123038 《Java程序设计》 第五周学习总结
  13. 应付模块的R12 TRACE 和 FND Debug 文件 / FND 日志 调试
  14. 出错: IOException parsing XML document from ServletContext resource [/cn.mgy.conig]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/cn.mgy.conig]
  15. [Swift]LeetCode956. 最高的广告牌 | Tallest Billboard
  16. java笔记 -- java字符串
  17. CentOS7 yum安装、配置PostgreSQL 9.5
  18. Windows CMD 支持ls命令
  19. 11G新特性 -- flashback data archive(2)
  20. EBS中查看其他用户或所有用户的请求和输出文件

热门文章

  1. jquery——滚动条插件jscroll.js
  2. [PHP]swoole_server几个进程的分工
  3. (七)中介者模式-C++实现
  4. TopCoder SRM 639 Div.2 500 AliceGameEasy --乱搞
  5. 第8章 用户模式下的线程同步(3)_Slim读写锁(SRWLock)
  6. 炮(棋盘DP)
  7. 2016年秋季的我,work with hololens
  8. [No00003D]操作系统Operating Systems信号量的代码实现Coding Semaphore &死锁处理Deadlock
  9. LCT裸题泛做
  10. Js倒计时程序