The 1064 error indicates a syntax error in a query or in a command submitted to MySQL.

learn more… | top users | synonyms

-1
votes
1answer
15 views

Remove records what is not contain in second table

I have to 2 tables: lang_temp (newest data): sku|postid|fi|en|ru (15000 records ) full_products: sku|postid|fi|en|ru|xx|zzz|aaaa|bbb (15200 records) postid are unique and it cant be same. I ...
0
votes
1answer
14 views

mysql copy to another only new records

I have to 2 tables: lang temp: sku|postid|fi|en|ru (15000 records / included 200 full_products records) full_products: sku|postid|fi|en|ru|xx|zzz|aaaa|bbb (200 records) postid are unical and ...
6
votes
3answers
3k views

MySQL pid ended (cannot start mysql)

I have a clean install of MySQL (mysql-5.5.24-osx10.6-x86_64). I am on Lion (OS 10.7.4) with a Mac Pro Quad Core. I installed MySQL the GUI installer and also installed the pref pane and the startup ...
4
votes
2answers
1k views

Trigger to track changes in MySQL Database

I cannot seem to create a trigger. I have tried it the two ways below for the update. I keep getting a syntax error with the insert statement. I have searched forums and web searches for the past 4 ...
0
votes
2answers
79 views

Syntax error when importing MySQL function

I get a #1064 syntax error on the beginning of line 5's if clause when trying to run the following code in PhpMyAdmin: DELIMITER ; CREATE DEFINER=`root`@`localhost` FUNCTION `ANREDE`(geschlecht ...
0
votes
2answers
106 views

MySQL Error #1064 from Create Table

I'm trying to create a database, I've written the code, when I import it to phpMyAdmin, I get the following error: #1064 - You have an error in your SQL syntax; check the manual that corresponds to ...
0
votes
2answers
9k views

How to fix MySQL CREATE FUNCTION query?

I want to add mysql function: CREATE FUNCTION `chf_get_translation`(translation_id INT, site_lang INT) RETURNS text CHARSET utf8 BEGIN DECLARE translation TEXT; SELECT title INTO ...
-3
votes
3answers
32 views

Creating Installer in php [closed]

I am working with php and i have create a website in it. But when i try to insert the data through php i am unable to do it please help me. Here is sql $sq=mysql_query("INSERT INTO `aboutus` ...
-1
votes
1answer
30 views

Failure in Executing MySQL query without the console

I am trying to execute below query on ubuntu but every time it is giving error. Below is the query mysql --local-infile -u root -proot qlikviewDB -e "load data local infile ...
1
vote
3answers
182 views

SQL Create table error? [closed]

I use the following sql statement in mysql: CREATE TABLE "User"( userId int NOT NULL AUTO_INCREMENT, userRoleId int NOT NULL, taalId int NOT NULL, hotelId int NOT NULL, ...
0
votes
1answer
60 views

MySql create table error expexting REFERENCES [closed]

Here is my code, i get an error at the very last line (syntax error, unexpected ')', expecting REFERENCES) CREATE TABLE `MyDB`.`Product`( `Product_ID` int AUTO_INCREMENT, `Category_ID` int(2), ...
-1
votes
2answers
39 views

Use temporary variable as colum name in mysql query [closed]

I have set a temporary variable with a column name: SET @col_name:='my_column_name'; Now I want to use @col_name in a query as a column name. UPDATE my_table SET @col_name='my new value'; But ...
-1
votes
2answers
36 views

Error in the procedure [closed]

CREATE DEFINER = 'root'@'%' PROCEDURE neon_cruise.Core_qe_1419_232() Begin DECLARE tRowID SMALLINT ; DECLARE tCOMProjectID SMALLINT; DECLARE tCOMCompanyID SMALLINT; declare ...
-2
votes
1answer
33 views

Is this Possible update mysql table rows update automatically after some days.? [closed]

I have a Problem with Mysql table... In this table more than 30,000 of rows. and at a time 3 process running and that is Select, Insert and Update on this table. the problem is that after Some days my ...
-4
votes
1answer
69 views

Mysql LIKE query doesn't work [closed]

So I'm trying a basic query like this: SELECT `City`.* FROM `city` WHERE (City 'LIKE %a%') But I get this error in return: #1064 - You have an error in your SQL syntax; check the manual that ...
-4
votes
1answer
228 views

Another MySQl Syntax error 1064 [closed]

What is wrong with this? CREATE TABLE IF NOT EXISTS `Service Manager`.`Company` ( `Company_ID` INT(6) UNSIGNED NOT NULL AUTO_INCREMENT , `GUID` CHAR(32) UNSIGNED NOT NULL , `Region_ID` INT(6) ...
0
votes
0answers
16 views

Mysql on my box is crashing, [closed]

This the log output: tail -f /var/log/mysqld/mysqld.log InnoDB: Reading tablespace information from the .ibd files... InnoDB: Restoring possible half-written data pages from the doublewrite ...
0
votes
4answers
4k views

mysql - Access denied for user root

I know very little about database development, but am trying to learn, so forgive me if my question is not good. I set up WAMP on my computer about a year ago. Everything functions fine. I just set ...
0
votes
2answers
1k views

Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)

I have a problem when trying to connect to MySQL database using Windows OBDC driver. There are plenty of search hits regarding the obvious... people are using old versions, however, I'm not. mysqld ...
-1
votes
1answer
57 views

Routine using “Select INTO” with MySQL v 5.5 gives 1064 syntax error [closed]

What am I doing wrong here? I keep getting: #1064 - 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 'INTO ...
0
votes
1answer
26 views

Migrate script from MySQL 4.0 to 4.1

I've exported a MySQL v4.0.25 script to a sql file and since I can't find an installer for 4.0 anymore the only option left is to use 4.1.. Now, I'm getting the common 1064 error since v4.0 doesn't ...
1
vote
5answers
8k views

MySQL problem: ERROR 1064 (42000)

I am trying to populate a new MySQL empty database with a db dump created from MS SQL Azure database, and I get the following error ERROR 1064 (42000) at line 1: You have an error in your SQL ...
0
votes
4answers
5k views

SQL syntax: passing variable to SQL query

This is my first program and I have done extensive research trying to answer this question and I can not solve the problem: <?php include "connect.php"; if (!$connection) { ...
-1
votes
3answers
73 views

I am receiving an error which says column “address” can not be null

I am trying to run a query but whenever I run I get an error saying that "column address cannot be null". here is my code. package com.rajesh.action; import java.sql.*; public class AccountDao { ...
0
votes
1answer
77 views

MySQL ERROR 1064 - MySQL Workbench [closed]

As I have searched, it is a common error and for each case the solution is different. I'm new in database designing. But what is strange to me is that this error is given to me because of running an ...
1
vote
5answers
115 views

Head busting MYSQL error 1064 What's Wrong with my Syntax? [closed]

I've been staring at this for a moment and think I'm not perceiving the obvious. The resulting display is 1064 (mysql reference says it's a syntax error) $query = "INSERT INTO members ( id , ...
1
vote
3answers
58 views

Parameters are declared correctly but still getting this error..Warning: mysqli_error() expects parameter 1 to be mysqli, null given in..? [closed]

<?php $con = mysqli_connect("ipaddress","username","password","database"); if(mysqli_connect_errno()) { echo "Failed to connect to database. We are working on it! Please try some time later or ...
-2
votes
3answers
174 views

Fix MySQL error #1064 for me [closed]

Apparently, I have a syntax error in the following SQL statements: create database project_line; use project_line; drop table if exists project; create table project ( p_id int primary key, ...
-2
votes
1answer
38 views

Add x days to a DATE-field, where x is another column [closed]

I have a table which has a DATE-column, along with a int modifier column. I'd like to somehow be able to add x days to the DATE-column, where x is the modifier's value. Something like this: ...
0
votes
1answer
32 views

phpMyAdmin error: Cannot return a ResultSet in the Given Context in mysql

Please have a look at the code below: DELIMITER $$ DROP PROCEDURE `mostPopular` CREATE PROCEDURE `mostPopular`() BEGIN DROP view if exists mostRec; create view mostRec as select count(*) as ...
0
votes
2answers
84 views

Rails - Sqlite vs Mysql syntax error [closed]

I have the following query that is working good on Sqlite3 (dev env) but fails (SyntaxError) on MySQL (prod env). I have tried different resolution but I can't find where is the problem: data = ...
0
votes
3answers
117 views

MySQL syntax error caused by weird array value which shouldn't be there? [closed]

This is really, really weird. Basically, I have a MySQL syntax error occurring because of quotes in this string: ('Justin Bieber', '12312688' , ...
1
vote
2answers
594 views

mysql syntax error inserting decimal, timestamp with php [closed]

Im getting the error: 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 '10', '16:39:02', '292.35')' at line ...
-1
votes
4answers
183 views

mySQL DROP NOT NULL not working [closed]

I'm reading The definitive guide to django, and there's a line where i have to tell mySQL that a column can have a null value. The book uses this ALTER TABLE books_book ALTER COLUMN ...
1
vote
3answers
13k views

Error Code: 1064 in mysql

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 it in vain, here 's ...
-3
votes
4answers
481 views

mysql import is not working [closed]

I want to import data into mysql, but getting the following error. error 1064 :parsing error I have created database with name test, user is test and password is test. but not able to import. ...
1
vote
2answers
4k views

Unable create a table - ERROR 1064 (42000): You have an error in your SQL syntax

I'm trying to execute this simple command: create table foo (clo int primary key unsigned auto_increment); But I get this error: ERROR 1064 (42000): You have an error in your SQL syntax; ...
4
votes
2answers
816 views

java.sql.SQLException Parameter index out of range

While am using this code it shows java.sql.SQLException Parameter index out of range (1 > number of parameters, which is 0): private void cmd_searchActionPerformed(java.awt.event.ActionEvent evt) ...
2
votes
4answers
8k views

How to run a SQL text file on MySQL

I am new to MySQL. I want to execute a text file containing SQL queries.
1
vote
2answers
580 views

error while creating trigger on update operation in mysql5?

I am creating a trigger on update operation. However, while creating trigger in MySQL5 it is giving an error. Trigger: CREATE TRIGGER `test`.`Employee_Trigger_Update` AFTER UPDATE ON ...
7
votes
2answers
36k views

MySQL error: 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

I have the Stored procedure like this: CREATE PROCEDURE ProG() BEGIN SELECT * FROM `hs_hr_employee_leave_quota`; END But its giving the error as follows: #1064 - You have an error in your ...
0
votes
3answers
13k views

MySQL Error: “an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax” [closed]

I am getting this error from MySQL: 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 'Details (title, first, ...
0
votes
2answers
4k views

mysql: Error Number: 1064

I'm trying to delete some data from 3 tables. Here is my SQL: DELETE FROM productdetail JOIN (productdescription,productmineralcategories,productspeciescategories) ON ( productdetail.id ...
5
votes
3answers
8k views

Why does MySQL report a syntax error on FULL OUTER JOIN? [closed]

SELECT airline, airports.icao_code, continent, country, province, city, website FROM airlines FULL OUTER JOIN airports ON airlines.iaco_code = airports.iaco_code FULL OUTER JOIN cities ON ...
0
votes
2answers
83 views

MySQL fulltext search with different permutations

I am creating a mysql fulltext search engine for my website, and I have an advanced search page that allows the user to limit which columns they would like to search under. However, whenever I make a ...
0
votes
1answer
5k views

MySQL Error #1064

Running this SWL query keeps returning: #1064 - 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 ')' at line 20 ...
2
votes
3answers
2k views

How to get scalar result from prepared statement?

Is it possible to set the result from a prepared statement into a variable? I am trying to create the following stored procedure but it is failing: ERROR 1064 (42000) at line 31: You have an ...
4
votes
2answers
7k views

MySql Cursor - Creating a procedure

i'm trying to create a cursor for the first time. I have looked at the documentation, i understand the concept, but i can't seem to get it to even be declared... I'm using: MySql 5.1.41 SqlYog as ...
2
votes
4answers
5k views

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax

I want to create a table using the following script: mysql_query("create table `".$mysql_table_prefix."query_log` ( query varchar(255), time timestamp(14), elapsed float(2), results ...
4
votes
2answers
41k views

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax — PHP — PDO

I've looked through all the other stackoverflow (and google) posts with the same problem, but none seemed to address my problem. I am using pdo and php. My code: $vals = array( ':f'=>$email, ...

1 2 3 4 5 12