About 21,100,000 results
Open links in new tab
  1. 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.

  2. sql - MySQL query String contains - Stack Overflow

    52 Mine is using LOCATE in mysql: LOCATE (substr,str), LOCATE (substr,str,pos) This function is multi-byte safe, and is case-sensitive only if at least one argument is a binary string. In your …

  3. Newest 'mysql' Questions - Stack Overflow

    40 views MySQL 8 query always returns the full list instead of missing records when comparing against existing table [closed] I’m working with MySQL 8.0.35 on DBeaver app and trying to …

  4. MySQL JOIN ON vs USING? - Stack Overflow

    The USING clause works for Oracle, PostgreSQL, MySQL, and MariaDB. SQL Server doesn't support the USING clause, so you need to use the ON clause instead. The USING clause can …

  5. How to allow remote connection to MySQL - Stack Overflow

    I have installed MySQL Community Edition 5.5 on my local machine and I want to allow remote connections so that I can connect from external source. How can I do that?

  6. How to start MySQL with --skip-grant-tables? - Stack Overflow

    There is no command given in that page to start mysqld with --skip-grant-tables. I like my articles with 'copy paste' smoothness! :)

  7. MySQL: Grant **all** privileges on database - Stack Overflow

    Feb 16, 2011 · mysql -u root -p Enter your mysql root password Next, list out all the users and their host on the MySQL server. Unlike PostgreSQL this is often stored in the mysql database. …

  8. How to connect from windows command prompt to mysql …

    C:\> cd /d D:\MYSQL\Bin D:\MYSQL\Bin>mysql -u root -p admin The .exe after mysql is optional, since .exe is an executable extension on Windows. If you type mysql, Windows will …

  9. grant remote access of MySQL database from any IP address

    GRANT ALL PRIVILEGES ON database.* TO 'user'@'yourremotehost' IDENTIFIED BY 'newpassword'; But then it only allows me to grant a particular IP address to access this …

  10. mysql - What's the difference between INNER JOIN, LEFT JOIN, …

    An SQL JOIN clause is used to combine rows from two or more tables, based on a common field between them. There are different types of joins available in SQL: INNER JOIN: returns rows …