建库 CREATE DATABASE: 修改数据库 ALTER DATABASE: 栗子: ...
分类:
数据库 时间:
2020-05-24 19:18:47
阅读次数:
67
class Solution { public: bool isMatch(string s, string p) { return isMatchCore(s.c_str(), p.c_str()); } bool isMatchCore(const char* s, const char* p) ...
分类:
其他好文 时间:
2020-05-24 16:53:21
阅读次数:
51
百度网盘:https://pan.baidu.com/s/1pK8fZQ5FVn9JCEhr4GjuYg { 提取码:pp9v 资源列表: 数据库 Oracle 12c : linuxx64_12201_database ; winx64_12201_database 11g : winx64_12 ...
分类:
其他好文 时间:
2020-05-24 16:22:57
阅读次数:
137
示例: git init xxx //初始化仓库(工作区) git add a.txt xy.sh //上传两个文件至暂存区 git commit -m "first" //上传至分支 git clone https://github.com/feiYufy123/tt //克隆网址 git rem ...
分类:
其他好文 时间:
2020-05-24 13:34:33
阅读次数:
74
题目:Candies 题目链接:https://vjudge.net/problem/CodeForces-1343A 思路: 其实就是把给出的式子等比数列求和整理一下,便可求出x。 解题代码: // . . // | Try First One| // ' ' // | . . // | | | ...
分类:
其他好文 时间:
2020-05-24 11:25:18
阅读次数:
49
The Node.js framework is mostly used to create server based applications. The framework can easily be used to create web servers which can serve conte ...
分类:
Web程序 时间:
2020-05-24 00:54:25
阅读次数:
90
spring boot启动的时候,报了这个错误 发现很多都是让我们添加方言 例如: database-platform: org.hibernate.dialect.OracleDialect 然而我发现问题根本不是这个 我在连接数据的url处添加了时区设置就不报错了 jdbc:mysql://lo ...
分类:
数据库 时间:
2020-05-24 00:41:34
阅读次数:
62
//贴个主席树板子#include<bits/stdc++.h> using namespace std; #define pb push_back #define sc(x) scanf("%lld",&x); #define int long long #define fi first #def ...
分类:
其他好文 时间:
2020-05-24 00:11:36
阅读次数:
47
MySQL数据库管理 查看数据库 show databases 创建数据库 如果没有修改my.ini配置文件的默认字符集,在创建数据库时,指定字符集 create database 数据库名 character set 'utf8'; 特殊字符(关键字)用反引号 例如:create database ...
分类:
数据库 时间:
2020-05-23 20:37:28
阅读次数:
64
1.先到要提交项目目录里右键选择git bash。 2.git init 初始化本地仓库 3.git add . 把本地文件添加到本地仓库暂存区,.的意思是把当前目录下所有的文件及子目录都添加管理 4.git commit -m 'first commit'。提交的内容 5.git remote a ...
分类:
Web程序 时间:
2020-05-23 19:57:23
阅读次数:
67