背景:需要更新一些不规范的时间格式,如将某个时间格式化为yy-MM-dd,实际上为yy-MM-ddhh:mm:ss,并且需要提供回滚脚本。例如:规范化时间的脚本如下:updatetestsettest_date=substring(account_date,1,10)WHEREtest_date>‘2017-06-0100:00:00‘ANDtest_date<‘2017-09-070
分类:
数据库 时间:
2020-12-04 10:59:43
阅读次数:
7
首发公众号:Dotnet9 作者:沙漠之尽头的狼 日期:202-11-27 一、本文开始之前 上传文件时,一般是提供一个上传按钮,点击上传,弹出文件(或者目录选择对话框),选择文件(或者目录)后,从对话框对象中取得文件路径后,再进行上传操作。 选择对话框代码如下: OpenFileDialog op ...
filters:{ dotime(mess){ if(mess&&mess.length>10){ return mess.substring(5,10) } }, do2time(mess){ if(mess&&mess.length>10){ return mess.substring(11,1 ...
分类:
其他好文 时间:
2020-12-01 12:22:25
阅读次数:
11
地理坐标下,所以要转换为度。 arcgis engine 10.2.2 +vs2010 [DllImport("GDI32.dll")] public static extern int GetDeviceCaps(int hdc, int nIndex); /* User32 delegates ...
分类:
其他好文 时间:
2020-11-23 12:49:37
阅读次数:
30
列转行 select prd_no_chg_y, SUBSTRING(t.prd_no_chg_y, number ,CHARINDEX(';',t.prd_no_chg_y+';',number)-number) prd_no_chg from tb t,master..spt_values s ...
分类:
数据库 时间:
2020-11-21 12:37:40
阅读次数:
11
题目描述 给定两个字符串,求解这两个字符串的最长公共子序列(Longest Common Sequence)。比如字符串1:BDCABA;字符串2:ABCBDAB。则这两个字符串的最长公共子序列长度为4,最长公共子序列是:BCBA。序列无须是连续的,重复即可。 解题思路 暴力遍历 动态规划 暴力遍历 ...
分类:
其他好文 时间:
2020-11-16 13:50:06
阅读次数:
9
最长回文子序列 题目: 给定一个字符串 s ,找到其中最长的回文子序列,并返回该序列的长度。可以假设 s 的最大长度为 1000 。 示例 1: 输入: "bbbab" 输出: 4 一个可能的最长回文子序列为 "bbbb"。 示例 2: 输入: "cbbd" 输出: 2 一个可能的最长回文子序列为 ...
分类:
其他好文 时间:
2020-11-10 10:41:34
阅读次数:
2
Given a string s, find the length of the longest substring without repeating characters. Input: s = "abcabcbb"Output: 3Explanation: The answer is "abc ...
分类:
其他好文 时间:
2020-11-08 17:44:10
阅读次数:
26
##前序遍历+判断 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x ...
分类:
其他好文 时间:
2020-10-30 11:39:04
阅读次数:
14
ABAP 正则表达式 ABAP支持正则表达式。 支持正则表达式的语句: 1.FIND,REPLACE语句; 2.Functions:count,count_xxx,contains,find,find_xxx,match,matches,replace,substring,substring_xxx ...
分类:
其他好文 时间:
2020-10-18 16:46:52
阅读次数:
27