About 6,890,000 results
Open links in new tab
  1. MySQL :: MySQL Forums

    Apr 16, 2025 · Forum to discuss quality assurance techniques, such as bug reports, test cases, code patches

  2. How to connect to MySQL from the command line - Stack Overflow

    Jun 22, 2023 · One way to connect to MySQL directly using proper MySQL username and password is: mysql --user=root --password=mypass Here, root is the MySQL username …

  3. Announcing January 2025 Releases featuring MySQL Server 9.2.0 ...

    Jan 22, 2025 · MySQL NDB Cluster is the distributed, shared-nothing variant of MySQL. MySQL Server 9.2.0 and MySQL NDB Cluster 9.2.0 are Innovation releases, which means it will have …

  4. sql - MySQL query String contains - Stack Overflow

    it appears the author wanted to construct the MySQL query using PHP. Since the question was asked 12 years ago, current practice would be to use preprepared statements to prevent SQL …

  5. MySQL :: Re: CVE-2024-7254

    Oct 28, 2024 · CVE-2024-7254 is currently in "awaiting analysis" state. However, Connector/J users should not be affected by it.

  6. MySQL :: MySQL Forums :: MySQL Workbench

    Sep 17, 2024 · Can't login to MySQL with MySQL Workbench, Authentication plugin "" couldn't be found in restricted_auth plugin list

  7. MySQL :: Database initialization Issue

    Nov 15, 2024 · Hi, I'm trying to install mysql 9.1 on my pc. However when I get to the configuration of mysql, I keep ...

  8. What does mysql -u root -p do? - Stack Overflow

    Apr 7, 2017 · mysql -u root -p means, that you trying to connect to MySQL shell with parameters - -u parameter specified MySQL user name. -u, --user=name User for login if not current user. …

  9. How to find out the MySQL root password - Stack Overflow

    Jun 5, 2012 · UPDATE mysql.user SET authentication_string=PASSWORD('password') WHERE User='root'; FLUSH PRIVILEGES; In MySQL 5.7, the password field in the mysql.user table …

  10. mysql - `MODIFY COLUMN` vs `CHANGE COLUMN` - Stack Overflow

    Feb 8, 2013 · If you have already created your MySQL database, and decide after the fact that one of your columns is named incorrectly, you don't need to remove it and make a …