码迷,mamicode.com
首页 >  
搜索关键字:duplicate from active database    ( 76794个结果
mysql 清理command为sleep的连接进程
批量删除 sleep 进程状态的连接数解决方法。 直接在MySQL命令控制台操作: mysql> show processlist; mysql> SELECT concat('KILL ',id,';') FROM information_schema.processlist WHERE user ...
分类:数据库   时间:2021-05-24 16:34:09    阅读次数:0
python k-means 一堆乱七八糟的程序
python k-means F:\PythonProject\K-Means import pandas as pd import numpy as np from sklearn.preprocessing import StandardScaler from sklearn.model_sel ...
分类:编程语言   时间:2021-05-24 16:18:04    阅读次数:0
dedecms删除id>N且id<M的文章内容
dedecms删除id>N且id<M的文章内容的sql命令,通过织梦后台的sql命令执行: //dedecms删除文章的sql命令 https://www.360muye.cn/DELETE FROM dede_addonarticle WHERE aid >N and aid<M; DELETE ...
分类:其他好文   时间:2021-05-24 16:17:32    阅读次数:0
9 django CBV
1 修改views import hashlib import json from django.core import serializers from django.http import JsonResponse from django.utils.decorators import meth ...
分类:其他好文   时间:2021-05-24 16:10:13    阅读次数:0
17.MySQL数据库
1 数据库原理 数据库:是以一定方式储存在一起、能予多个用户共享、具有尽可能小的冗余度、与应用程序彼此独立的数据集合。简单理解就是存储电子文件的仓库,用户可以对仓库中的资料进行增删改查等操作。 数据库管理系统(Database Management System):简称DBMS,是为了管理数据库而设 ...
分类:数据库   时间:2021-05-24 16:06:44    阅读次数:0
优秀设计之ETC:编写可维护的代码
优秀的软件设计,以设计可维护的软件为目标,能够灵活应对产品的各种需求变化,这就需要遵循 ETC 原则。 视频地址:https://www.zentao.net/programmer/etc-maintainable-code-80345.html/?from=uplubky ETC 原则是什么 Ea ...
分类:其他好文   时间:2021-05-24 16:01:33    阅读次数:0
国外动物介绍网页
下载地址:https://download.csdn.net/download/qq_31293575/18340399 项目介绍 HOME We come from nature back to nature People from nature, after death should retur ...
分类:Web程序   时间:2021-05-24 15:41:13    阅读次数:0
pymysql
##(1)如果项目没有mysql模块,需要先安装 ##(2)引入模块import pymysql.cursors##(3)连接MySQL"""host:主机名,MySQL的安装位置,可以写电脑的ip,域名,localhost本机user:用户名passwd:对用user用户的密码database(d ...
分类:数据库   时间:2021-05-24 15:35:53    阅读次数:0
Ubuntu 18.04 安装Nginx及部署Vue配置
更新软件包 sudo apt update sudo apt install nginx 查看状态 sudo systemctl status nginx 状态显示绿色active表示正常运行 防火墙开放相关端口 sudo ufw allow 'Nginx Full' 重新加载规则 sudo ufw ...
分类:系统相关   时间:2021-05-24 15:33:12    阅读次数:0
vue api 请求报错 Error occurred while trying to proxy request /user/report-user from localhost:83....
一.报错信息 Error occurred while trying to proxy request /user/report-user from localhost:83 .... 二.index.js 配置信息 proxyTable: { '/api': { target: 'http://l ...
分类:Windows程序   时间:2021-05-24 15:32:48    阅读次数:0
76794条   上一页 1 ... 36 37 38 39 40 ... 7680 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!