select case superguid when '0' then name else (select LISTAGG(name,'.') WITHIN GROUP(ORDER BY levelno) from busfw_t_dchead where tablecode = 'BDM_T_HC ...
分类:
数据库 时间:
2020-07-02 18:20:35
阅读次数:
57
https://blog.csdn.net/liu_if_else/article/details/73604356 ...
分类:
编程语言 时间:
2020-07-02 18:11:46
阅读次数:
113
'''爬取豆瓣top250书籍''' import requests import json import csv from bs4 import BeautifulSoup books = [] def book_name(url): headers = { 'User-Agent': 'Mozi ...
分类:
其他好文 时间:
2020-07-02 16:39:12
阅读次数:
70
原因:是内容过多,渲染不及时; 解决办法:body元素前加这个js; <script type="text/javascript"> var docEl = document.documentElement; var clientWidth = window.innerWidth; if(clien ...
分类:
移动开发 时间:
2020-07-02 16:32:05
阅读次数:
86
今天,写存储过程时写成了:if...then...else if....else...end if.能编译通过,但是有问题,后来实在是找不到问题怀疑写错了这个语句,后来在网上查了一下,结果不是else if 而是elsif.改过来后就正常了。 Oracle/PLSQL: IF-THEN-ELSE S ...
分类:
数据库 时间:
2020-07-02 16:21:56
阅读次数:
105
二叉树需要不断的自己画图并且一步一步的跟着程序走才能明白它的原理: #include <iostream> #include<string.h> #include <stdio.h> #include<stack> #include<queue> using namespace std; typed ...
分类:
其他好文 时间:
2020-07-02 16:16:56
阅读次数:
46
MD5信息摘要算法(Message Digest Algorithm) md5是一种密码散列函数,可以生成128位(16字节)的散列值,用于确保信息传输完整一致。 这里举例如何在16机器上实现md5算法: md5.h 1 #ifndef MD5_H 2 #define MD5_H 3 4 typed ...
分类:
编程语言 时间:
2020-07-02 13:39:17
阅读次数:
47
789. 数的范围 #include<iostream> #include<vector> #include<algorithm> using namespace std; const int maxn =1e5+10; int a[maxn]; int main() { int n,m,x; ci ...
a=input('请输入用户名') count=1 while count<3: if a=='我是大聪明': print('输入正确') count=4 else: a=input('请重新输入') count=count+1 if a=='我是脑残': pass else: print('您已经 ...
分类:
其他好文 时间:
2020-07-02 12:00:02
阅读次数:
59
在c++标准11之前,c++在函数声明中有exception功能,用来指定函数抛出的异常类型。 void func1() throw(runtime_error); // 可能抛出runtime_error的异常 void func2() throw(); // 不会抛出任何异常 void func ...
分类:
编程语言 时间:
2020-07-02 11:59:24
阅读次数:
62