About 361,000 results
Open links in new tab
  1. How to Create a MySQL User and Grant Privileges (Step-by-Step)

    Apr 7, 2025 · Learn how to create a MySQL user, grant privileges, and manage database access. Step-by-step guide with SQL commands and security best practices.

  2. MySQL :: MySQL 8.4 Reference Manual :: 15.7.1.3 CREATE USER

    The CREATE USER statement creates new MySQL accounts. It enables authentication, role, SSL/TLS, resource-limit, password-management, comment, and attribute properties to be …

  3. MySQL CREATE USER

    In this tutorial, you will learn how to use the MySQL CREATE USER statement to create a new user in the database.

  4. How to Create a MySQL User and Grant Privileges (2025 Guide)

    Aug 27, 2025 · For this tutorial, I’ll be working on a Windows machine using XAMPP with access to MySQL/MariaDB through the Command Prompt (CMD). If you’re on Linux or macOS, don’t …

  5. How To Create a New MySQL User and Grant Privileges

    Jul 18, 2024 · Learn to create a new MySQL user and grant privileges via terminal commands, improving database security and management.

  6. SQL CREATE USERS - GeeksforGeeks

    Jul 23, 2025 · In SQL, the CREATE USER command is used to add new user accounts, while the DROP USER command removes them. Let’s walk through the step-by-step process of …

  7. Managing users and roles in MySQL 8: A practical guide

    Jan 26, 2024 · Effective management of users and roles constitutes a critical aspect of database administration, ensuring both security and proper access control. MySQL 8 provides a robust …

  8. How to manage users and login to MySQL - Prisma

    To create, modify, and delete users within MySQL, the core commands you need are: To execute the commands above, you need to login to MySQL with an account with CREATE USER …

  9. MySQL Basics: Safe and Sound—User Management and Database …

    4 days ago · Keep your MySQL database protected with beginner-friendly advice on user management and security! Learn how to create users, grant and revoke privileges, and …

  10. MySQL :: MySQL 8.4 Reference Manual :: 8.2.8 Adding Accounts, …

    To manage MySQL accounts, use the SQL statements intended for that purpose: CREATE USER and DROP USER create and remove accounts. GRANT and REVOKE assign privileges to …