MySQL基础 1.概述 1.1 数据库 数据库是长期存储在计算机内有组织、有共享、统一管理的数据集合 存储位置: 基于磁盘的数据库 mysql sqlserver oracle。数据存储文件中。IO 读写 效率偏慢 数据持久(永久保存) 基于内存的数据库 redis 效率比较快 数据有可能丢失(不 ...
分类:
数据库 时间:
2021-04-20 15:37:59
阅读次数:
0
章节1:了解PHPPHP是什么? PHP能干什么? 开发网站输出一个属于自己的第一个PHP程序。 <?phpecho 'Hello World'; ?> <?php ?> 标识 [告诉你]echo 'Hello World'; 代码 echo [指令] 输出 echo 'echo'; CD光盘 磁带 ...
分类:
数据库 时间:
2021-04-20 15:31:27
阅读次数:
0
一、bit_xor 1、头文件 #include <functional> 2、模板 template <class T> struct bit_xor; template <class T = void> struct bit_xor; 3、返回两个参数按位XOR的结果(公共成员函数) 4、使用 ...
分类:
其他好文 时间:
2021-04-20 15:10:43
阅读次数:
0
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:
数据库 时间:
2021-04-20 14:57:17
阅读次数:
0
天电脑装了win10,需要重新装oracle,这边记录一下重装过程,避免下次浪费时间。 1、oracle下载 官方下地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 注意Orac ...
分类:
数据库 时间:
2021-04-20 14:47:39
阅读次数:
0
##题意 求最长上升子序列长度 ##思路 本题直接用dp写,会超时,需要优化 优化办法:二分+dp ##AC代码 //4test n //6 p //4 2 6 3 1 5 ->3 //10 //2 3 4 5 6 7 8 9 10 1 ->9 //8 //8 7 6 5 4 3 2 1 ->1 / ...
分类:
其他好文 时间:
2021-04-19 14:47:09
阅读次数:
0
opt_map函数中对于指定了select program的分析 从过滤器中进行map static int open_output_file(OptionsContext *o, const char *filename) open_output_file函数中根据stream_map进行创建输出 ...
分类:
其他好文 时间:
2021-04-19 14:39:12
阅读次数:
0
今天在navicat中编写sql操作oracle数据库时进行了误操作,可以使用如下语句进行回退回滚,因为navicat是自动提交事务的,而rollback没法回滚。 oracle回退 --开启闪退 alter table TB_MENU_INFO enable row movement; --闪退到 ...
分类:
数据库 时间:
2021-04-19 14:34:24
阅读次数:
0
今天操作数据库一不小心将很重要的数据删除了,找备份也没有,幸好Oracle有闪回的功能。 Flashback table pb_acc_user to timestamp to_timestamp ('2014-0315 09:30:00','yyyy-mm-dd hh24:mi:ss'); 提示O ...
分类:
移动开发 时间:
2021-04-19 14:33:45
阅读次数:
0
import org.junit.Test; public class TestMethods { @Test public void test() { System.out.println("hello world"); } } 1:首先需要导入import org.junit.test这个jar ...
分类:
编程语言 时间:
2021-04-16 12:01:06
阅读次数:
0