热门文章
PL/SQL基本循环语句
基本循环结构包含LOOP和END LOOP语句之间的语句序列。通过每次迭代,执行语句序列,然后在循环顶部继续控制。 语法 PL/SQL编程语言的基本循环语法是 - LOOP Sequence of statements; END LOOP; ...
新建用户
进入数据库服务器 打开cmd,登录数据库 sqlplus GOLD/123456@ykzlpdb as sysdba; 新建用户 create user GOLDHLL identified by 123 default tablespace CPS; GOLDHLL :用户名124 :密码cps :表...
MySQL添加新用户、创建数据库、为新用户分配权限
1.登录Mysql [root@xufeng Desktop]# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 6 2.添加新的用户 允许本地 IP...
MySQL 双主从配置
本文来自网络,具体待测,谨慎上生产。 系统环境:CentOS Linux release 7.9.2009 (Core) MySQL版本:5.37 主节点:192.168.10.11 从节点:192.168.10.12 修改配置文件 主从节点均需配置 # vim ...