Ubuntu14.04下MySQL的安装
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;
最新文章
- jboss设置图片上传大小
- clip to bounds 和mask to bounds的区别
- error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
- 2016 - 1 -17 GCD主队列与全局队列
- 【转】C# 重写WndProc 拦截 发送 系统消息 + windows消息常量值(1)
- 算法篇——Cantor的数表
- 带你初识Angular中MVC模型
- angular分页指令
- 带参数的查询防止SQL注入攻击
- Swiper的简单实用方法
- HDU 4611Balls Rearrangement(思维)
- 201521123038 《Java程序设计》 第五周学习总结
- 应付模块的R12 TRACE 和 FND Debug 文件 / FND 日志 调试
- 出错: IOException parsing XML document from ServletContext resource [/cn.mgy.conig]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/cn.mgy.conig]
- [Swift]LeetCode956. 最高的广告牌 | Tallest Billboard
- java笔记 -- java字符串
- CentOS7 yum安装、配置PostgreSQL 9.5
- Windows CMD 支持ls命令
- 11G新特性 -- flashback data archive(2)
- EBS中查看其他用户或所有用户的请求和输出文件
热门文章
- jquery——滚动条插件jscroll.js
- [PHP]swoole_server几个进程的分工
- (七)中介者模式-C++实现
- TopCoder SRM 639 Div.2 500 AliceGameEasy --乱搞
- 第8章 用户模式下的线程同步(3)_Slim读写锁(SRWLock)
- 炮(棋盘DP)
- 2016年秋季的我,work with hololens
- [No00003D]操作系统Operating Systems信号量的代码实现Coding Semaphore &;死锁处理Deadlock
- LCT裸题泛做
- Js倒计时程序