sql通用语法:1.语句以单行或多行书写,以分号结束 2.MySql数据库不区分大小写,但是关键字建议大写 查询数据库的字符集:show create database 数据库名;创建数据库指定字符集:show database if not exists t_studeng chararcter ...
分类:
数据库 时间:
2020-06-28 18:14:20
阅读次数:
72
2020年06月28日 13.00 第一步:spfile文件中添加集群相关条目*.cluster_database=true*.compatible='11.2.0.4.0'orcl2.instance_number=2orcl2.thread=2orcl2.undo_tablespace='UND ...
分类:
其他好文 时间:
2020-06-28 15:32:38
阅读次数:
67
跳转的 // 字符串 this.$router.push('/home/first') // 对象 this.$router.push({ path: '/home/first' }) // 命名的路由 this.$router.push({ name: 'home', params: { user ...
分类:
其他好文 时间:
2020-06-28 14:55:29
阅读次数:
38
树——存储结构 双亲表示法(顺序存储) 双亲表示法:每个节点中保存指向双亲的“指针” #define MAX_TREE_SIZE 100 //树中最多的结点数 typedef struct{ //树的结点定义 ElemType data; //数据元素 int parent; //双亲位置域 }PT ...
分类:
其他好文 时间:
2020-06-28 13:06:22
阅读次数:
76
参考资料: https://www.yoyomooc.com/yoyomooc/52.keeping-domain-models-and-database 删除尚未应用到数据库的最新迁移 删除已经应用到数据库的迁移 EF Core删除迁移的命令是Remove-Migration。一次只删除一个迁移, ...
分类:
其他好文 时间:
2020-06-28 12:58:04
阅读次数:
122
var cars = ["Banana", "Orange", "Apple", "Mango"]; var x = cars.length; // length 属性返回元素的数量var y = cars.sort(); // sort() 方法对数组进行排序 var first = cars[0 ...
分类:
编程语言 时间:
2020-06-28 09:38:11
阅读次数:
59
主库: SQL> alter database commit to switchover to physical standby with session shutdown; Database altered. SQL> startup ORACLE instance started. Total ...
分类:
数据库 时间:
2020-06-28 00:24:55
阅读次数:
120
1、聚焦爬虫 代理浏览器上网 网页的特点 网页都有自己唯一的url 网页内容都是HTML结构 使用的都是HTTP,HTTPS协议 爬取步骤: 给一个url 写程序,模拟浏览器方位url 解析内容 环境: Windows环境、Linux环境 python3.6 64位 编辑工具,vscode,subl ...
分类:
其他好文 时间:
2020-06-27 20:23:23
阅读次数:
57
using System;using System.Collections.Generic;using System.ComponentModel.Design;using System.Linq;using System.Text;using System.Threading.Tasks; nam ...
分类:
其他好文 时间:
2020-06-27 19:55:37
阅读次数:
73
41. 缺失的第一个正数 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/first-missing-positive 题目 给你一个未排序的整数数组,请你找出其中没有出现的最小的正整数。 示例 1: 输入: [1,2,0] 输出: 3 示例 2: ...
分类:
编程语言 时间:
2020-06-27 18:38:48
阅读次数:
62