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

    Mar 18, 2026 · Forum for MySQL Enterprise Monitor & Oracle Enterprise Manager for MySQL

  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. 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 case:

  4. Newest 'mysql' Questions - Stack Overflow

    5 days ago · MySQL is an Open Source RDBMS (Relational Database Management System) that runs as a server providing multi-user access to several databases. Sign up to watch this tag and see more …

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

    Apr 7, 2017 · I am trying to figure out what the mysql -u root -p command does. I have googled the command but I can't find any good results.

  6. How do you use the "WITH" clause in MySQL? - Stack Overflow

    191 MySQL prior to version 8.0 doesn't support the WITH clause (CTE in SQL Server parlance; Subquery Factoring in Oracle), so you are left with using: TEMPORARY tables DERIVED tables …

  7. MySQL: @variable vs. variable. What's the difference?

    80 In MySQL, @variable indicates a user-defined variable. You can define your own. ... Outside of stored programs, a variable, without @, is a system variable, which you cannot define yourself. The …

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

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

    This MySQL code creates a new user 'sa' that can connect from the host 'Developer' with the password 'developer@123'. It then grants the user full access (ALL PRIVILEGES) to all databases and tables …

  10. How can I do 'insert if not exists' in MySQL? - Stack Overflow

    I started by googling and found the article How to write INSERT if NOT EXISTS queries in standard SQL which talks about mutex tables. I have a table with ~14 million records. If I want to add more ...