Tagged Questions
The 1064 error indicates a syntax error in the query (INSERT, UPDATE, DELETE, SELECT, etc.) submitted to MySQL.
26
votes
2answers
5k views
How to get the max of two values in MySQL?
I tried but failed:
mysql> select max(1,0);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual
that corresponds to your MySQL server version for the right syntax to use ...
8
votes
3answers
120 views
What is wrong with this MySQL Query?
It's 12:30am and I have been coding for 9 hours straight. I really need to get this project done, but MySQL is messing with my deadline. Could you examine this snippet for me and see if you can find ...
7
votes
2answers
1k views
sql error errno: 121
CREATE TABLE `users` (
`UID` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
`username` VARCHAR(45) NOT NULL ,
`password` VARCHAR(100) NULL ,
`name` VARCHAR(100) NULL ,
`gender` BIT NULL ,
...
7
votes
2answers
5k views
Creating trigger for table in MySQL database (syntax error)
I have trouble defining a trigger for a MySQL database. I want to change a textfield before inserting a new row (under a given condition). This is what I have tried:
CREATE TRIGGER add_bcc
BEFORE ...
5
votes
1answer
356 views
Syntax error with mySQL query function to convert decimal grade to a letter grade
I'm having troubles with a syntax error when trying to create a function in MySQL to convert a decimal grade into a letter grade.
What could be the issue?
ERROR 1064 (42000): You have an error in ...
4
votes
4answers
87 views
Whats wrong with this query?
For the life of me i can seem to figure it out
INSERT INTO category SET CategoryName = 'Hardware_1',
Category = 'HARDWARE', Status = '1', Order = '1'
You have an error in your SQL syntax; check the ...
4
votes
3answers
242 views
Incorrect mySQL syntax error
I have inherited a site that includes a bespoke CMS. I moved hosts and after the move, I now get this error when trying to update pages;
Query failed: You have an error in your SQL syntax; check the ...
3
votes
3answers
169 views
MySQL Conditional Join
As you can see below, I am checking to see if the current user is in user_a or user_b columns of table friends.
Depending on where the current user is located, I want to get his corresponding friend.
...
3
votes
1answer
531 views
Using INSERT INTO SELECT when table structures do not match in MySQL
I'm familiar with the following use of the command:
INSERT INTO mytable
SELECT *
FROM other_table
This works fine when the tables are identical in terms of layout.
What I'd like to do is ...
3
votes
2answers
256 views
MySQL Trigger ERROR in phpAdmin
Hi
Is there any error in this TRIGGER Statement.When ever i try to run this in phpAdmin its giving error saying "#1064 - You have an error in your SQL syntax; check the manual that corresponds to your ...
3
votes
3answers
418 views
Conditional NOT NULL case SQL
I am trying to calculate a field and I want it to behave differently depending on if one of the columns happens to be null. I am using MySQL
CASE
WHEN reply.replies <> NULL THEN
...
3
votes
4answers
93 views
SQL query erroring - need fresh eyes
Ok, first, I'm building a query to search MLS data that has been provided in the form of a MySQL database, So I don't have control over the data format, and thus I believe I have to do a lot of ...
3
votes
3answers
53 views
insert - not recorded field in the table
INSERT INTO `jos1_content`
(`title`, `introtext`, `fulltext`, `state`, `sectionid`, `catid`, `attribs`)
VALUES
($title, $introtext, $fulltext, 1, 1, $catid, 5)
Query is made up of php script. ...
3
votes
1answer
143 views
SQL error #1064
Trying to enter a value into a mediumblob field in a mySQL table but I'm getting:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for ...
3
votes
1answer
338 views
Using concat in clause MATCH AGAINST - mysql
I really hope that someone can help me with my problem. I would like to realize a match against query with group_concat.
I need something like this:
Select c.id, p.place
from content c
join ...
3
votes
3answers
111 views
Error in phpmyadmin though runs fine in php script
Ok so this one is strange and I'm thinking there must be a problem in my sql query but I don't see anything wrong with it. What is happening is that I have a script that I am running in a php script ...
3
votes
4answers
3k views
How to delete from multiple tables in MySQL?
I am trying to delete from a few tables at once. I've done a bit of research, and came up with this
DELETE FROM `pets` p,
`pets_activities` pa
WHERE p.`order` > :order
...
3
votes
1answer
87 views
PHP cries Syntax Error on simple SQL WHERE clause
mysql_query('SELECT ID
FROM documents
WHERE (Key="' .$theKey. '"
AND Value="' .$theValue. '")');
Isn’t this right? Also tried with a semicolon at the ...
3
votes
5answers
3k views
How can I change database name in mysql?
How can I change database name in mysql ?
My Database name is SPM and I want to change it to spm(small letters)
I tried using
RENAME DATABASE SPM TO spm;
and am getting following error message:
...
3
votes
5answers
8k views
mysql delimiter error
Modifed.
DROP FUNCTION IF EXISTS PersonName;
DELIMITER |;
CREATE FUNCTION PersonName( personID SMALLINT )
RETURNS CHAR(20)
BEGIN
DECLARE pname CHAR(20) DEFAULT '';
SELECT name INTO pname FROM ...
3
votes
5answers
137 views
What's wrong with this mysql query?
SELECT app_contracts.*, app_customers.id as customer, app_boards.id as board
WHERE app_customers.id=app_contracts.customer_id
AND app_boards.id=app_contracts.board_id
ORDER BY app_contracts.id ...
2
votes
2answers
45 views
what causes the error with this mysql query?
mysql_query ("
INSERT INTO items
(index, name, description, given_by,
cost_to_tcs, starting_bid, auction_type)
VALUES
('{$index_number}','{$name}','{$description}','{$donated_by}',
...
2
votes
1answer
31 views
Migrating old MySQL code to new version of MySQL. I can't find error here involving ENGINE=MyISAM
Here is my error information :
CREATE TABLE `mb_topics` (
`id` mediumint(9) NOT NULL auto_increment,
`name` varchar(45) NOT NULL default '',
`username` varchar(100) NOT NULL default '',
...
2
votes
1answer
31 views
Error when using else if in sql trigger
I am not sure whats wrong with my code.
delimiter $$
CREATE TRIGGER updateRestaurantAtributes
AFTER UPDATE ON fields_data
FOR EACH ROW BEGIN
IF (NEW.fieldid = 1) THEN
UPDATE restaurants
...
2
votes
2answers
65 views
Simple 'SELECT field FROM table_name where TO = “$to”' is returning MySQL error 1064
This problem has got me stumped for a few days now.
I have a MySQL table that looks like this:
+--------+------------+------------+-----------+-----------+-----------+
| id | to | from ...
2
votes
2answers
63 views
MySQL error message
I have imported my Access to MySQL through a program. I now want to change some of the columns from null to not null but it won't let me. An error 1265 comes up saying "data truncated for column" and ...
2
votes
1answer
47 views
Multiple like on same field
is it possible to do something like the following in MySQL:
SELECT * FROM table WHERE value LIKE '%A%' AND value LIKE '%B%'
I am trying to catch entries where "value" would be "AxBx".
Thank you for ...
2
votes
1answer
82 views
How to increment a field in MySql using “ON DUPLICATE KEY UPDATE” when inserting multiple rows?
How to increment a field in MySql using "ON DUPLICATE KEY UPDATE" when inserting multiple rows?
For one row:
INSERT INTO table
(a, counter_elem)
VALUES
(1, 1)
ON DUPLICATE KEY UPDATE ...
2
votes
3answers
52 views
What's wrong with this case SQL query?
maybe you can help, I'm using this case query, and I'm trying to do mysql weighting with it. What's wrong with it?
SELECT *
FROM cronjob_reloaded
WHERE site IN ('site1.com', 'site2.com')
...
2
votes
3answers
182 views
trouble with quotes and mysql insert into
I'm having problems inserting a form $_POST variable to MySQL!
I know it's a single quote problem but simply cannot resolve it.
Code is:
$naziv_db = $_POST["naziv"];
$naziv_db = ...
2
votes
3answers
217 views
SHOW TABLES statement in MySQL
mysql> SHOW TABLES like 'cms';
+-------------------------+
| Tables_in_tianyan (cms) |
+-------------------------+
| cms |
+-------------------------+
1 row in set (0.00 sec)
...
2
votes
1answer
343 views
problem with get url using php and mysql
Sorry if this question may seem easy to some but i cannot seem to figure it out. i was told that i could come here because the guys here are very helpful. i am having problem with the following code. ...
2
votes
1answer
162 views
Mysql function returning a value from a query
i want to create a function which calculate a value using a query and i have problem returing the value:
Shortened, my query is:
CREATE FUNCTION func01(value1 INT , monto DECIMAL (10,2)) ...
2
votes
6answers
136 views
MySQL Update from post
Okay so heres my problem, I have a form on my site where a user could type some information in about themselves and then when they hit submit I will put it into my database. Now I have done this in ...
2
votes
1answer
214 views
Mysql statement (syntax error on FULL JOIN)
What is wrong with my sql statement, it says that the problem is near the FULL JOIN, but I'm stumped:
SELECT `o`.`name` AS `offername`, `m`.`name` AS `merchantName`
FROM `offer` AS `o`
FULL JOIN ...
2
votes
1answer
216 views
Stumped SQL Exception for JDBC
I'm trying all I can to get a JDBC to work, the only thing that is stumping me right now is this exception, which I have no idea about:
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have ...
2
votes
1answer
261 views
MYSQL syntax error using LIMIT in Java
I'm running some simple MYSQL statements from within a Java application. I'm getting a syntax error on a statement that seems to run fine if I run it directly against the MYSQL server through Navicat. ...
2
votes
1answer
8k 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,
...
2
votes
2answers
300 views
MySQL Subqueries Not Working, Generating Error Code 1064
This query doesn't work
SELECT * FROM Catalogue WHERE Catalogue.ID IN (
SELECT ID_catalogue FROM Categories WHERE Categories.Product_type='xxx'
)
Error Code : 1064
You have an error in
...
2
votes
2answers
288 views
Java PreparedStatement SQL Syntax for LIKE
I have a prepared statement as so:
private static final String SQL_LIST_GROUP = "SELECT *
FROM table
...
2
votes
1answer
124 views
MySQL Error in PHP but not through CLI
Update:
I found the problem, I output the sql statement to a file instead of on the screen and noticed an extra hidden char towards the end of the sql statement. Once I removed that the query worked ...
2
votes
1answer
550 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 ...
2
votes
2answers
100 views
mySQL JOIN statements not returning what I wanted
I want to display a "FULL JOIN" of two tables, but using an intermediary with foreign keys to create the matches.
This should show a list of all employees with the projects they are working on, and ...
2
votes
4answers
723 views
How to deal with Apostrophe while writing into Mysql database
I am getting this 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 ...
2
votes
3answers
87 views
SQL error, I don't get it
INSERT INTO `tims`.`pending_profile`(`id`, `nickname`, `location`, `role`, `yog`, `interests`, `favMoment`, `gainThisYr`, `futurePlans`, `bio`)
VALUES ('1', '1', '1', '1', '', '1', '1', '1', '1', ...
2
votes
1answer
83 views
Is there a way to increment the value of a sql column without reading it
I wanted to know if there is a way I can directly increment the value of a column without reading the current value.
something like:
update table `user` set cnt = cnt+1
The above statement gave me ...
2
votes
2answers
52 views
How do I search “many LIKE” in the database (mysql)?
I want to search number of strings in the Database (type: MYSQL) and I did this:
SELECT *
FROM `rooms`
WHERE `dates` LIKE '%09/08/10%' OR '%08/08/10%'
Why doesnt it work? when I removed the ...
2
votes
1answer
193 views
Install script MySQL syntax error “You have an error in your SQL syntax; […] ”
I have an install script on my website, and when i run it, it gives me thsi error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the ...
2
votes
1answer
31 views
Mysql assigning default causes error
I am trying to run the below query to create a table in mysql and I am getting an error.
create table newtable (
version_id int(11) auto_increment not null,
test_id int(11) default ...
2
votes
2answers
884 views
MySQL syntax problem in “SELECT * FROM INTO FILE”
I'm trying to move tables between two databases and I'm using this command that is given by MySQL :
SELECT *
INTO OUTFILE '/tmp/result.txt'
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY ...