Adding a virtual unique key constraint in MySQL
with support of soft deletions
Jun 18, 20233 min read27

Search for a command to run...
Articles tagged with #mysql
with support of soft deletions

This is a collection of commonly used MySQL statements in my daily work. Mainly for myself to copy-paste and save time. Create User and GRANT READ-ONLY permission SELECT * FROM mysql.user; CREATE USER 'read-only-user'@'%' IDENTIFIED BY 'aSecurePassw...

between self-hosted MySQL Master and RDS Slave
