码迷,mamicode.com
首页 >  
搜索关键字:from    ( 57817个结果
单表清除重复数据
delete from 表名 a where 列名 in ( select t.列名 from (select 列名 ,count(*) from 表名 where 列名 is not null group by 列名 having count(*) > 1) t ) ...
分类:其他好文   时间:2021-05-24 02:01:44    阅读次数:0
TEXT类型字段的模糊查询
创建全文索引 create context index CONTEXT_a_CONTENT on a(CONTENT) lexer CHINESE_FP_LEXER sync transaction; 验证全文索引查询 SELECT * FROM a WHERE CONTAINS(a.CONTENT ...
分类:其他好文   时间:2021-05-24 01:54:16    阅读次数:0
Widows 关闭 Defender的方法
Study From MS reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f ...
分类:其他好文   时间:2021-05-24 01:44:17    阅读次数:0
reduce函数
# reduce()函数# 使用方法:导入模块from functools import reduce# reduce(功能函数,可迭代对象,初始值=None)# 例如:reduce(lambda x,y:x+y,num,100)# 功能:将整体数据合到一起,得到一个最终结果#实例1from fun ...
分类:其他好文   时间:2021-05-24 01:25:09    阅读次数:0
连续日期
方法一 select t1.* from stadium t1, stadium t2, stadium t3 where t1.people >= 100 and t2.people >= 100 and t3.people >= 100 and ( (t1.id - t2.id = 1 and ...
分类:其他好文   时间:2021-05-24 01:17:27    阅读次数:0
How do I run a Python script from C#?
How do I run a Python script from C#? The reason it isn't working is because you have UseShellExecute = false. If you don't use the shell, you will ha ...
分类:编程语言   时间:2021-05-24 01:04:39    阅读次数:0
DM实例大小写敏感的区别
在数据库的使用过程中,经常会遇到各种各样的问题,想要做到事半功倍,对数据库的了解以及在做数据库设计的时候就应该考虑很多问题,在初始化实例之前需要向用户说明哪些参数初始化实例之后不能改,相关参数的作用,如字符集GB18030是比UTF-8节省体积等。下面说明DM大小写敏感的区别 #初始化实例 达梦数据 ...
分类:其他好文   时间:2021-05-24 01:01:10    阅读次数:0
表的基本查询
--表数据查询 --表的基本查询 --数据查询的基本框架 --select(显示哪些列) - from(从哪一张表) - where(根据啥条件) --选择查询 --基本查询的格式:select 属性列表 from 数据表名 --说明:select语句后面可以是字段名,也可以是字段和常数组成的算术表 ...
分类:其他好文   时间:2021-05-24 00:52:55    阅读次数:0
datetime模块
一、datetime模块 12 # datetime模块可以看成是时间加减的模块import datetime 12 # 返回当前时间print(datetime.datetime.now()) 1 2019-03-07 16:22:14.544130 1 print(datetime.date.f ...
分类:其他好文   时间:2021-05-24 00:49:07    阅读次数:0
java冒泡排序算法
package test; public class BubbleSort { public void bubble(Integer[] array,int from,int end) { for(int k=1;k<end-from+1;k++) { for(int i=end-from;i>=k ...
分类:编程语言   时间:2021-05-24 00:31:25    阅读次数:0
57817条   上一页 1 ... 35 36 37 38 39 ... 5782 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!