先看看表中的数据都有一些什么内容。 1.数据类型 表里的数据,都需要有一个确切的数据类型。先来看看表支持哪些数据类型吧?(以下列举常用的) int、bigint、float、double、char、varchar、date、datetime,BLOB、CLOB int和bigint是整型数据,int ...
分类:
数据库 时间:
2021-03-01 13:03:20
阅读次数:
0
440. 字典序的第K小数字 LeetCode_440 题目描述 方法一:暴力法(必超时) package com.walegarrett.interview; /** * @Author WaleGarrett * @Date 2021/2/25 19:49 */ /** * 题目描述:给定整数 ...
分类:
其他好文 时间:
2021-02-27 13:20:31
阅读次数:
0
# # +SCRIPT BY Alexander Ezharjan+ # # +date : 2020/12/12 + # # +contact : ezhar.cnblogs.com + # # import sys import os import time print( """ XX MMMM ...
分类:
编程语言 时间:
2021-02-27 13:11:28
阅读次数:
0
Vue3 生命周期 生命周期 在 setup 中使用的 hook 名称和原来生命周期的对应关系 beforeCreate → 不需要 created → 不需要 beforeMount → onBeforeMount mounted → onMounted beforeUpdate → onBefo ...
分类:
其他好文 时间:
2021-02-27 13:02:42
阅读次数:
0
用户主题宽表 类似累积事实表 drop table if exists dwt_user_topic; create external table dwt_user_topic ( user_id string comment '用户 id', login_date_first string com ...
分类:
其他好文 时间:
2021-02-26 13:12:24
阅读次数:
0
用户维度表 属于拉链表 应用场景:缓慢变化的表 特点:历史数据和最新数据在一张表中 图解: sql重点:union all , 如何找到并修改旧的end_date insert overwrite table dwd_dim_user_info_his_tmp select * from ( sel ...
分类:
其他好文 时间:
2021-02-25 12:11:02
阅读次数:
0
title: 关于spring boot 注入相关经验 date: 2019-07-27 06:54:30 categories: spring boot tags: java 关于spring boot 注入相关经验 这里是最近重新学习Spring boot关于注入相关的经验博客,特此记录一下: ...
分类:
编程语言 时间:
2021-02-24 13:23:47
阅读次数:
0
insert into table ads_new_mid_count select '2020-03-12', count(*) from dwt_uv_topic where login_date_first='2020-03-12' group by login_date_first; ...
分类:
其他好文 时间:
2021-02-24 13:05:56
阅读次数:
0
查看sql_model参数命令:SELECT @@SESSION.sql_mode; 解决方法:命令行输入set sql_mode =’STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENG ...
分类:
数据库 时间:
2021-02-24 12:58:47
阅读次数:
0
主要是这两个sql start_log(利用get_json_object函数): insert overwrite table "$app".dwd_start_log PARTITION (dt='$do_date') select get_json_object(line,'$.mid') m ...
分类:
数据库 时间:
2021-02-23 14:36:54
阅读次数:
0