摘要: ![image-20191027202828187](https://user-images.githubusercontent.com/36098426/67634981-dcb7f080-f8fc-11e9-8f40-efb7cc87851d.png) ![image-20191027202843343](https://user-images.githubusercontent.com/36 阅读全文
posted @ 2019-10-27 21:02 别再闹了 阅读(571) 评论(0) 推荐(0)
摘要: MySQL的变量 变量分两种,系统变量和用户变量 来源:https://blog.csdn.net/J080624/article/details/73828012 【1】系统变量 系统定义好的变量,大部分时候用户根本不需要使用系统变量。系统变量是用来控制服务器表现的。如:autocommit,au 阅读全文
posted @ 2019-10-27 17:55 别再闹了 阅读(891) 评论(0) 推荐(0)
摘要: ![0030](https://user-images.githubusercontent.com/36098426/67632321-ef223200-f8dc-11e9-8bb5-e8b5c0cc6ded.jpg) ![0031](https://user-images.githubusercontent.com/36098426/67632322-ef223200-f8dc-11e9-981 阅读全文
posted @ 2019-10-27 17:14 别再闹了 阅读(146) 评论(0) 推荐(0)
摘要: 系统权限分类 注意,这里提到的都是"角色",而非“用户 DBA: 拥有全部特权,是系统最高权限,只有DBA才可以创建数据库结构。 RESOURCE:拥有Resource权限的用户只可以创建实体,不可以创建数据库结构。 CONNECT:拥有Connect权限的用户只可以登录Oracle,不可以创建实体 阅读全文
posted @ 2019-10-27 16:38 别再闹了 阅读(2268) 评论(0) 推荐(0)
摘要: 这是去年的内容,之前放在github的一个被遗忘的reporsity里面,今天看到了就拿出来 C++ include include using namespace std; / question 2:The creation of BinaryTree goal: 1.建立二叉树(通过先序序列作为 阅读全文
posted @ 2019-10-27 16:26 别再闹了 阅读(719) 评论(0) 推荐(0)
摘要: 这是去年的内容,之前放在github的一个被遗忘的reporsity里面,今天看到了就拿出来 C++ include include using namespace std; / question 1;栈的链式存储 goal:数据结构的建立、元素插入、删除等基本操作。 解释实现过程,演示实现例子以及 阅读全文
posted @ 2019-10-27 16:24 别再闹了 阅读(482) 评论(0) 推荐(0)
摘要: ![0009](https://user-images.githubusercontent.com/36098426/67631696-9cdd1300-f8d4-11e9-86e4-b5761860e318.jpg) ![0010](https://user-images.githubusercontent.com/36098426/67631697-9d75a980-f8d4-11e9-933 阅读全文
posted @ 2019-10-27 16:13 别再闹了 阅读(300) 评论(0) 推荐(0)
摘要: ![0024](https://user-images.githubusercontent.com/36098426/67631657-348e3180-f8d4-11e9-99f4-06c1b1298e63.jpg) ![0025](https://user-images.githubusercontent.com/36098426/67631658-348e3180-f8d4-11e9-93d... 阅读全文
posted @ 2019-10-27 16:11 别再闹了 阅读(459) 评论(0) 推荐(0)
摘要: 数据库视图功能的使用 创建视图的格式: 为什么要使用视图: 1. 简化了操作,把经常使用的数据定义为视图。 2. 安全性,用户只能查询和修改能看到的数据。 3. 逻辑上的独立性,屏蔽了真实表的结构带来的影响。 视图中的内容会随着表项自动更新。 视图也是可以插入和删除的,但是注意对视图的插入和删除从理 阅读全文
posted @ 2019-10-27 16:00 别再闹了 阅读(804) 评论(0) 推荐(0)