摘要:
`# 九九乘法口诀 print(" 九九乘法口诀 ") v_re = 0 for i in range(1, 10): for j in range(i, 10): v_re = i * j print(str(i) + ' x ' + str(j) + ' = ' + str(v_re), end 阅读全文
摘要:
1、 创建一个用户mytest create user mytest password ‘Xxxx@123’; 2、 表test的查询和删除表的权限赋予给mytest grant select, delete on table test to mytest; 3、 更新test表a,b两列的权限赋给 阅读全文