if not exists(select * from sys.columns where [object_id] = object_id('szydytglhyytb') and name = 'SZYDYTGLHYYTB_HYBM') BEGINalter table szydytglhyytb ...
分类:
其他好文 时间:
2020-07-28 13:54:54
阅读次数:
56
题目描述 Roundgod is given n,k,construct a permutation P of 1~n satisfying that for all integers i in [1,n],there exists a contiguous subarray in P of len ...
分类:
其他好文 时间:
2020-07-28 00:18:40
阅读次数:
75
数据准备: drop table if exists t1; /* 如果表t1存在则删除表t1 */ CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `a` int(11) DEFAULT NULL, `b` int(11) NOT ...
分类:
其他好文 时间:
2020-07-28 00:03:44
阅读次数:
96
string[] path = Directory.GetFiles(@path,"*.jpg");// 获取目录下的所有jpg文件 播放音乐 1 // 2 // 摘要: 3 // 控制 .wav 文件中的声音播放。 4 [ToolboxItem(false)] 5 public class Sou ...
最近项目在用mysql语句 指定非空,默认值为空字符串 NOT NULL DEFAULT '' 建表 CREATE TABLE IF NOT EXISTS `ims_test` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT ,`sid` int(11 ...
分类:
数据库 时间:
2020-07-27 23:47:51
阅读次数:
81
需求:后端返回文件流前端将文件流转为成blob地址预览pdf文件 两种方式: 1,PDFJS: https://mozilla.github.io/pdf.js/?支持获取文件流到客户端,生成blob地址预览 2,Vue-pdf https://github.com/FranckFreiburger ...
分类:
Web程序 时间:
2020-07-27 23:42:58
阅读次数:
110
一、单个键管理针对单个键的命令,有type、del、object,exists,expire等,下面介绍几个重要的键的重命名Renamekeynewkey192.168.1.10:6379>setpythonjedisOK192.168.1.10:6379>getpython"jedis"192.168.1.10:6379>renamepythonjavaOK192.168.1.
分类:
其他好文 时间:
2020-07-27 10:01:46
阅读次数:
84
原文地址: https://blog.csdn.net/xiushuiguande/article/details/79476964 实验数据 CREATE DATABASE IF NOT EXISTS SQL50; USE SQL50; CREATE TABLE Student(sid VARCH ...
分类:
数据库 时间:
2020-07-26 19:39:24
阅读次数:
86
快速排序 才发现自己配置好差,最坏情况10000就堆栈溢出了。。。。。 # coding: utf-8 import random import sys sys.setrecursionlimit(100000000) def quick_sort(li, left, right): if left ...
分类:
编程语言 时间:
2020-07-26 01:15:00
阅读次数:
65
避免中文乱码 redis-cli --raw(但是这样会不显示前面的序号) 设置一个key :set name gsl 获取key: get name 判断是否存在key: EXISTS name 查看所有key: keys * 移动元素到指定的库:move phone 2 (移动phone到第二个 ...
分类:
其他好文 时间:
2020-07-26 01:03:06
阅读次数:
59