摘要: -- 创建数据库 create database 数据库名 default charset =utf8; -- 创建表 create table 表名 ( id int,name char(20)); create table 表名 (id int null/not null,name char(2 阅读全文
posted @ 2020-06-03 18:05 misherry 阅读(156) 评论(0) 推荐(0)
摘要: -- 创建用户 create user '用户名'@'ip地址' identified by 'password'; ip adress 可填%,即指可以在任何电脑上登录 -- 给用户进行授权 (一)grant 权限(select,insert,update) on 数据库名.表名 to '用户名' 阅读全文
posted @ 2020-06-03 17:40 misherry 阅读(167) 评论(0) 推荐(0)
摘要: 1 >>>from openpyxl.utils import get_column_letter,column_index_from string 2 3 >>>get_column_letter(2) 4 5 B 6 7 >>>column_index_from_string('B') 8 9 阅读全文
posted @ 2020-06-03 17:16 misherry 阅读(970) 评论(0) 推荐(0)
摘要: 1 from aip import AipOcr 2 3 """ 你的 APPID AK SK """ 4 APP_ID = 5 API_KEY = 6 SECRET_KEY = 7 8 client = AipOcr(APP_ID, API_KEY, SECRET_KEY) 9 """ 读取图片 阅读全文
posted @ 2020-06-03 16:56 misherry 阅读(120) 评论(0) 推荐(0)