上一页 1 ··· 164 165 166 167 168 169 170 171 172 ··· 188 下一页
摘要: 内连接:连接的多个数据必须存在才能连接select * from sjh14482条记录 create table sjha as ( select * from sjh1 limit 20 )select * from sjha20条记录 根据sjh1表的前20条记录新建表sjha内连接 左连接 阅读全文
posted @ 2021-01-13 15:17 myrj 阅读(97) 评论(0) 推荐(0)
摘要: C语言是C89标准,C++是C++99标准的。C89就是在1989年制定的标准,如今最新的是C11和C++11标准。根据不同的标准,它们的功能也会有所不同,但是越新的版本支持的编译器越少 阅读全文
posted @ 2021-01-13 09:00 myrj 阅读(228) 评论(0) 推荐(0)
摘要: 打开navicat for mysql连接mysqlcreate database lianxi刷新,双击lianxi,双击"表“点击右边的”导入向导“选择”ODBC"下一步点击数据源(...)打开连接属性对话框,选择“sql server native client 10.0"下一步选择相应的SQ 阅读全文
posted @ 2021-01-12 07:51 myrj 阅读(188) 评论(0) 推荐(0)
摘要: import sys import os import sqlite3 ##sys.path.append(os.path.abspath(os.path.dirname(__file__) + '/' + '..')) ##sys.path.append("..") class ConnectSq 阅读全文
posted @ 2021-01-11 21:23 myrj 阅读(365) 评论(0) 推荐(0)
摘要: 当前文件名:sqlite3.py 文件引入import sqlite3 运行会出错,因为调用sqlite3的方法首先从当前文件找方法,当然找不到,所以会报错了 阅读全文
posted @ 2021-01-11 20:20 myrj 阅读(178) 评论(0) 推荐(0)
摘要: import pymysql class MysqlHelper(object): conn = None def __init__(self, host, username, password, db, charset='utf8', port=3306): self.host = host se 阅读全文
posted @ 2021-01-11 19:05 myrj 阅读(209) 评论(0) 推荐(0)
摘要: import pymssql class MSSQL: def __init__(self,host,user,pwd,db): self.host = host self.user = user self.pwd = pwd self.db = db def __GetConnect(self): 阅读全文
posted @ 2021-01-11 18:46 myrj 阅读(125) 评论(0) 推荐(0)
摘要: import pandas as pd '''特例说明 file1="a20201220.xlsx" sheetname='Sheet1' df=pd.read_excel(file1,sheetname,usecols="A:D")#读取第A-D四列所有内容 df=pd.read_excel(fi 阅读全文
posted @ 2021-01-11 18:34 myrj 阅读(283) 评论(0) 推荐(0)
摘要: C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys 找到密钥文件, 根据时间判断具体是哪一个文件,赋予network service读权限 阅读全文
posted @ 2021-01-11 09:17 myrj 阅读(195) 评论(0) 推荐(0)
摘要: from winreg import * import re def subRegKey(key, pattern, patchlist): # 个数 count = QueryInfoKey(key)[0] for index in range(count): # 获取标题 name = Enum 阅读全文
posted @ 2021-01-10 21:06 myrj 阅读(142) 评论(0) 推荐(0)
上一页 1 ··· 164 165 166 167 168 169 170 171 172 ··· 188 下一页