摘要:
1、mysql 服务的启动和停止 net stop mysql net start mysql 2、登录mysql mysql (-h IP)-u 用户名 -p 密码 3、grant 权限 on 数据库. to 用户名@登录主机 identified by "密码"* 例:增加一个用户user密码为 阅读全文
摘要:
-- coding:utf-8 -- Author:Tinky 数据类型 """ 整数 int 长整型 long 浮点型 float 复数 complex """ 布尔值 """ 真,假,0、1 """ 三元运算 a, b, c = 1, 2, 3 d = a if a > b else c pri 阅读全文