About 180,000 results
Open links in new tab
  1. parsing - How can I fix MySQL error #1064? - Stack Overflow

    May 7, 2014 · Because there is a syntax error, MySQL has no idea what one is after and therefore gives up before it even looks at the database and therefore the schema or table …

  2. mysql - ERROR 1064 (42000): You have an error in your SQL syntax ...

    I have a MySQL commands: CREATE DATABASE IF NOT EXISTS courses; USE courses CREATE TABLE IF NOT EXISTS teachers( id INT(10) UNSIGNED PRIMARY KEY NOT …

  3. MySQL Error Code: 1064. You have an error in your SQL syntax

    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from test_table_1' at line 3 0.002 sec

  4. mysql - Error code 1064, SQL state 42000: You have an error in …

    May 6, 2010 · Here's a relevant bug conversation from MySQL's bug database: Bug #66659: mysql 5.6.6m9 fails on OPTION SQL_SELECT_LIMIT=DEFAULT Try upgrading your JDBC …

  5. mysql - Syntax error 1064 in CREATE TABLE statement with …

    Jun 27, 2012 · Here are the problems I see with your original script: BLOB and TEXT columns cannot have DEFAULT values. TINYTEXT is the same as VARCHAR(255), so you can't …

  6. ERROR 1064 (42000): You have an error in your SQL syntax; check …

    There are two different types of quotation marks in MySQL. You need to use ` for column names and ' for strings. Since you have used ' for the filename column the query parser got confused. …

  7. How to grant all privileges to root user in MySQL 8.0

    May 4, 2018 · This command will create a new user. But I want to grant privileges to existing root user. mysql> CREATE USER 'root'@'%' IDENTIFIED BY 'root'; Query OK, 0 rows affected …

  8. sql - MySQL Error #1064 on this INSERT? - Stack Overflow

    Jul 2, 2012 · mysql sql database debugging mysql-error-1064 edited Jul 2, 2012 at 19:50 asked Jul 2, 2012 at 19:38 Greg McNulty

  9. Error Code: 1064 in mysql - Stack Overflow

    Oct 28, 2011 · I created a procedure that is supposed to do some operation but every time I call it, mysql comes out with an error, which I have not clue what it means. I have tried to understand …

  10. Error 1046 No database selected, how to resolve? - Stack Overflow

    what happened to me was: create a schema, filled in the name of the database, then it says "fail, no database selected". reopen workbench, i see database that i have just failed to created. …