About 367,000 results
Open links in new tab
  1. MySQL command line client for Windows - Stack Overflow

    Jul 14, 2010 · Is there any nice command line MySQL client for windows? I mean a single exe that allows connecting and running a sample query. I've googled and only could find big graphical …

  2. How to select a MySQL database through CLI? - Stack Overflow

    The command line provided is not quite correct. To specify password in command line, you set --password=<pass_goes_here> to use database via command line, you put in mysql -u <user> -p …

  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. command line - How can I clear the screen in the MySQL console?

    I am not able to clear the screen in the MySQL command line prompt. My screen is filled with tables, data and queries. How can I clear it up?

  5. MySQL 8.0 Command Line Client crashes right after entering the …

    Dec 28, 2020 · This might be because MYSQL service is stopped. Open search bar in windows and type services Open the services application and find MYSQL application. Click on start Now open sql …

  6. How can I import an SQL file using the command line in MySQL?

    Jul 10, 2019 · I have a .sql file with an export from phpMyAdmin. I want to import it into a different server using the command line. I have a Windows Server 2008 R2 installation. I placed the .sql file on the C ...

  7. MySQL Password Not Working - Stack Overflow

    Jan 18, 2017 · EDIT: I had MySQL installed twice on my machine (XAMPP &amp; on its own) When I enter my password into MySQL Command Line Client, it rejects my password, gives 1 beep and …

  8. How to clear MySQL screen console in Windows? - Stack Overflow

    mysql> \! cls Explanation: \! is used to execute system shell commands cls is a command to clear the Windows command prompt screen This will do the job for Windows. Similarly if you are on Linux, you …

  9. What is the difference between MySQL Server and MySQL Client

    MYSQL Client are programs for communicating with the server to manipulate the information in the databases that the server manages. Example : mysql is the command line program that acts as a …

  10. Access mysql remote database from command line

    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 …