码迷,mamicode.com
首页 >  
搜索关键字:delete from    ( 68288个结果
python aes 加密
文档: https://www.pycryptodome.org/en/latest/ # pip install pycryptodome from Crypto.Cipher import AES import base64 class Encrypt: def __init__(self, k ...
分类:编程语言   时间:2021-05-24 02:53:36    阅读次数:0
关于django的url的namespace和view写法
命名空间模式 即使不同的APP使用相同的URL名称,URL的命名空间模式也可以让你唯一反转命名的URL。 举个例子: 项目的urls.py写法: from django.conf.urls import url,include from django.contrib import admin url ...
分类:Web程序   时间:2021-05-24 02:52:14    阅读次数:0
beautifulsoup爬取链家网数据直接写入excel里
代码(仅限用于学习交流,未经允许不得用于商业获取非法利益): import requests from bs4 import BeautifulSoup import time import csv def get_url(start_num,end_num): url_list = [] #建立一 ...
分类:其他好文   时间:2021-05-24 02:50:08    阅读次数:0
Vue项目中判断用户是否登录
// 全局路由导航拦截 router.beforeEach((to, from, next) ? { // ... if (to.path '/login') { // 如果是登录页面路径,就直接next() next() } else { // 其他页面路径 let token = session ...
分类:其他好文   时间:2021-05-24 02:26:50    阅读次数:0
单表清除重复数据
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
68288条   上一页 1 ... 40 41 42 43 44 ... 6829 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!