Mysql
 sql >> Database >  >> RDS >> Mysql

Come GRANT SELECT ON tablename su PUBLIC in MySQL

Per Documentazione MySQL

GRANT ALL ON test.* TO ''@'localhost'

Quindi puoi concedere select a chiunque da localhost come

grant select on tablename to ''@'localhost'

(OPPURE)

Puoi concedere a tutti gli utenti di un dominio specifico. Estratto dal documento MySQL