About 4,070,000 results
Open links in new tab
  1. How to execute a MySQL command from a shell script?

    An important consideration for accessing mysql from a shell script used in cron, is that mysql looks at the logged in user to determine a .my.cnf to load. That does not work with cron.

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

    Feb 27, 2011 · 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.

  3. How to show the last queries executed on MySQL?

    Mar 16, 2009 · If mysql binlog is enabled you can check the commands ran by user by executing following command in linux console by browsing to mysql binlog directory mysqlbinlog …

  4. mysql - SQL command to display history of queries - Stack Overflow

    Oct 19, 2011 · I would like to display my executed sql command history in my MYSQL Query Browser. What is the sql statement for displaying history?

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

    I've managed to get into MySQL using the command line terminal, but when I tried to enter some SQL, it said 'no database selected' how do I select a database? my database name is: …

  6. docker - How to execute MySQL command from the host to …

    To connect to the MySQL database using MySQL command line client. I connect to the bash into the running MySQL container: $ docker exec -t -i container_mysql_name /bin/bash -i is the …

  7. How do you run a single query through mysql from the command …

    This should be the first result in a google search (for "mysql exec sql from command line") and not the huge mysql site!

  8. 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?

  9. How to run SQL script in MySQL? - Stack Overflow

    Jan 20, 2012 · From Workbench: File > Run SQL Script -- then follow prompts From Windows Command Line: Option 1: mysql -u usr -p mysql> source file_path.sql Option 2: mysql -u usr …

  10. How can I access the MySQL command line with XAMPP for …

    cd c:\xampp\mysql\bin mysql.exe -u root --password If you want to use mysqldump.exe, you should also find it there. Log into your mysql server, and start typing your commands.