About 66 results
Open links in new tab
  1. MySQL Forums

    Jan 23, 2026 · The world's most popular open source database MySQL.com Downloads Documentation Developer Zone Forums Bugs Worklog Labs Planet MySQL News and Events Community

  2. How to reset or change the MySQL root password? - Stack Overflow

    How do I change the MySQL root password and username in ubuntu server? Do I need to stop the mysql service before setting any changes?

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

    How can you connect to MySQL from the command line in a Mac? (i.e. show me the code) I'm doing a PHP/SQL tutorial, but it starts by assuming you're already in MySQL.

  4. mysql - Access Denied for User 'root'@'localhost' (using password: YES ...

    Access denied for user 'root'@'localhost' it's because MySql 5.7 by default allow to connect with socket, which means you just connect with sudo mysql. If you run sql :

  5. MySQL :: MySQL Forums :: Newbie

    May 16, 2025 · Sticky: MySQL Performance Tuning: The Perfect Scalability (1 Posts) Edwin Desouza 09/21/2019 04:16PM Sticky: MySQL 8.0: if I should optimize only one query, which one should it be …

  6. Access mysql remote database from command line - Stack Overflow

    Apr 8, 2013 · I have a server with Rackspace. I want to access the database from my local machine command line. I tried like: mysql -u username -h my.application.com -ppassword But it gives an …

  7. How can I solve "Error: MySQL shutdown unexpectedly"?

    Aug 3, 2013 · Rename folder mysql/data to mysql/data_old Make a copy of mysql/backup folder and name it as mysql/data Copy all your database folders from mysql/data_old into mysql/data (except …

  8. MySQL :: MySQL Forums :: Chinese

    Jan 21, 2020 · mysql mgr新成员加入组问题之新成员无法通过二进制日志从其它可用成员同步数据

  9. String concatenation in MySQL - Stack Overflow

    Feb 2, 2018 · I am using MySQL and MySQL Workbench 5.2 CE. When I try to concatenate 2 columns, last_name and first_name, it doesn't work : select first_name + last_name as "Name" from test.student

  10. How to create a database from shell command in MySQL?

    Mar 11, 2010 · I'm looking for something like createdb in PostgreSQL or any other solution that would allow me to create database with a help of a shell command. Any hints?