2020-09-26から1日間の記事一覧

updateでのselect権限必要性

DB

MySQL (8.0.21) -- テストテーブル作成drop table tab1;create table tab1(col1 int);alter table tab1 add constraint tab1pk primary key(col1); insert into tab1 values(1);select * from tab1; -- テストユーザ作成drop user 'user1'@'%';create user '…

パスワードポリシー

DB

MySQL (8.0.21)https://tokyo-engineer.com/mysql8-password-root/#ihttps://dev.mysql.com/doc/refman/8.0/en/validate-password-options-variables.html ※デフォルトで有効 SHOW VARIABLES LIKE 'validate_password.%'; +--------------------------------…