मैं कुछ सामान का परीक्षण कर रहा था, और एक जोड़ा:
grant usage on statistics.* to cptnotsoawesome@localhost identified by 'password';
तो अब जब मैं करता हूँ
show grants for cptnotsoawesome@localhost;
मैं देख सकता हूँ कि उनमें से एक है:
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
अब मैं इसे हटा देना चाहता हूं क्योंकि मुझे लगता है कि यह एक सुरक्षा खतरा है, इसलिए मैं यह करता हूं:
REVOKE USAGE ON *.* FROM 'cptnotsoawesome'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
लेकिन फिर भी यह दर्शाता है कि अनुदान सूची में USAGE अनुदान है।
Grants for cptnotsoawesome@localhost
----------------------------------
GRANT USAGE ON *.* TO 'cptnotsoawesome'@'localhost' IDENTIFIED BY PASSWORD 'somePEW-PEWstring'
कोई विचार क्यों? मैं क्या गलत कर रहा हूं?