码迷,mamicode.com
首页 >  
搜索关键字:union all    ( 25526个结果
添加yum源
下载163的yum源到本地wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo清除缓存yum clean all生成缓存yum makecache ...
分类:其他好文   时间:2020-03-03 00:49:13    阅读次数:62
分期值、累计值的相互转换
-- 分期值到累计值代码示例1with temp00 as (select '2020-01-01' date1,1 num1union all select '2020-01-02' adate1,2 num1 union all select '2020-01-03' date1,3 num1u ...
分类:其他好文   时间:2020-03-03 00:47:21    阅读次数:80
oracle相关学习
select * from user_tab_comments;--查询本用户下的表select * from all_tables where owner='KAVINS';--查询某个用户下的表SELECT * FROM all_triggers WHERE table_owner = 'KAV ...
分类:数据库   时间:2020-03-02 19:07:46    阅读次数:68
linux-top命令查看内存CPU
查看多核CPU命令 mpstat -P ALL 和 sar -P ALL 说明:sar -P ALL > aaa.txt 重定向输出内容到文件 aaa.txt top命令 经常用来监控linux的系统状况,比如cpu、内存的使用,程序员基本都知道这个命令,但比较奇怪的是能用好它的人却很少,例如top ...
分类:系统相关   时间:2020-03-02 18:55:13    阅读次数:76
Transformer 论文:Attention Is All You Need
![](https://img2020.cnblogs.com/blog/1706941/202003/1706941-20200302134307508-1550128801.png) ![](https://img2020.cnblogs.com/blog/1706941/202003/1706... ...
分类:其他好文   时间:2020-03-02 15:00:49    阅读次数:52
yum install -y --enablerepo
echo -e "[NOT-CERTIFIED]\nname=NOT-CERTIFIED\nbaseurl=http://xxx/openopen/not-cert/rhel7-x86_64/latest/RPMS.all\nenabled=0\ngpgcheck=0" > /etc/yum.rep ...
分类:其他好文   时间:2020-03-02 12:57:44    阅读次数:124
MySQL UNION 操作符:语法及案例剖析
MySQL UNION 操作符 本教程为大家介绍 MySQL UNION 操作符的语法和实例。 描述 MySQL UNION 操作符用于连接两个以上的 SELECT 语句的结果组合到一个结果集合中。多个 SELECT 语句会删除重复的数据。 语法 MySQL UNION 操作符语法格式: SELEC ...
分类:数据库   时间:2020-03-02 10:58:24    阅读次数:61
【数据库】内连接、外连接、交叉连接
基本概念 关系模型(表) 关系模型 由关系数据结构、关系操作集合和关系完整性约束三部分组成。 关系模型的数据结构非常简单:一张扁平的 二维表 。 元组: 二维表中的具有相同数据类型的某一行 属性: 二维表中的具有相同数据类型的某一列 笛卡尔积 (Cartesian product):又称直积,分别用 ...
分类:数据库   时间:2020-03-01 19:41:27    阅读次数:68
atlab cnn程序例子
clear all; close all; clc; addpath('../data'); addpath('../util'); load mnist_uint8; train_x = double(reshape(train_x',28,28,60000))/255; test_x = dou ...
分类:其他好文   时间:2020-03-01 14:51:27    阅读次数:82
LeetCode 229: Majority Element II
Array LeetCode Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and i.... ...
分类:其他好文   时间:2020-03-01 14:18:51    阅读次数:71
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!