Tagged Questions
0
votes
2answers
212 views
Inserting data in MySQL table only if it doesn't exist already: trouble with INSERT IGNORE
so I've been looking around StackOverflow and the MySQL manual for a while, and I can't seem to solve my problem. What I'm trying to do is simply make my data INSERT function such that it doesn't add ...
1
vote
3answers
44 views
IGNORE not working Mysql
Hi i am importing a csv through a script
the table structure is as below
`contact_id` int(11) NOT NULL auto_increment,
`contact_first` varchar(255) character set latin1 default NULL,
...
0
votes
1answer
81 views
MySQL ignoring duplicates on non-primary key
I have a table created by this SQL statement:
CREATE TABLE employees (
id INTEGER NOT NULL AUTO_INCREMENT,
name VARCHAR(20),
PRIMARY KEY (id)
);
I would like to insert into the ...
0
votes
1answer
94 views
PHP MySQL Insert Ignore Inserting Too Much Data
I have a traffic exchange and every time a site is viewed I want it to insert in to a table which looks like:
-user
-site
The user is default of 1 and I don't insert in to it because I thought for ...
0
votes
2answers
323 views
MySQL INSERT IGNORE / ON DUPLICATE KEY UPDATE not detecting duplicates
I'm having an issue here, and after 2 hours of Googling Stackoverflow answers and testing different ideas I can't figure it out. Hopefully it's a no-brainer for someone out there.
EDIT: Fixed! See ...
0
votes
1answer
85 views
I can add the function as ON DUPLICATE KEY UPDATE
I have a function to insert data to mysql using cvs importer The original code in question is as follows:
{
$sql = "LOAD DATA INFILE '".@mysql_escape_string($this->file_name).
...
2
votes
1answer
806 views
Turnoff mysql unsafe statement warning
I am using log-error to write warning/errors into a file. When I perform INSERT IGNORE..SELECT statement, it just keep write this warning messages.
120905 3:01:23 [Warning] Unsafe statement written ...
3
votes
1answer
188 views
PHP/MYSQL - Insert into ignore, and ignore a specified column
I need to be able to only insert a row if the data doesn't already exist, except for the date column, which would always be different, so it will always insert a new row even though it shouldn't.
my ...
0
votes
1answer
289 views
MySQL insert if not exists/ignore
So basically here's my table layout:
Type_Of Agreement
iPad Heyo! I'm an agreement!
iPod Touch I'm another agreement!
Basically, I'm building an admin interface where an administrator ...
0
votes
3answers
53 views
Multiple Uniques MYSQL
I have some code im trying to get working. What im looking for is to have it so that i query a site, then display results and upload to database. I want it to ignore duplicates which i have working ...
0
votes
3answers
539 views
MySQL INSERT IGNORE INTO keeps adding duplicate entries
Here's the particular area im having an issue with
mysql_query("INSERT IGNORE INTO storeip (ip)
VALUES ('$ip')");
when testing this it keeps adding the same entry to the table even though I have ...
0
votes
2answers
2k views
How to check if record exists, if not insert
I'm making a blog site and I need to check if a tag exists before inserting the tag into the tblTag
This is what I'm trying:
$var_sqlTagsCheck = "IF (EXISTS(SELECT * FROM tblTag t WHERE t.tagName = ...
3
votes
3answers
838 views
MYSQL if not exists insert data
Guys I'm getting duplicate records on insert into my database for some reason with this code
$qry = "INSERT IGNORE INTO reports (". implode(", ",array_keys($reports)) .") VALUES (". implode(", ...
0
votes
1answer
516 views
MySQL insert statement - on duplicate key update
I have a MySQL insert statement that inserts data from an existing(Despgoods) table into a new table(DespGoods_All Details). The primary key in both tables is 'case no' and the autoincrement column in ...
0
votes
3answers
380 views
How to ignore empty fields when inserting into MySQL database?
I am creating a very basic admin page to control content on another page.
I have a few fields on the admin page, one of which is a file upload field. When the form is submitted the file gets uploaded ...
0
votes
2answers
127 views
How to check for existence of a row in mysql without using INSERT IGNORE?
I currently use this query to update listings in my database from my php app:
$query = "INSERT INTO listings (title, description) VALUES ('$title','$description')";
This listings table has a ...
2
votes
3answers
570 views
MySQL query ignores index when using LEFT JOIN with OR?
I have this query:
SELECT f.uid, fi.status FROM friends f
LEFT JOIN friends_invitations fi ON f.fid = fi.fid
WHERE (f.uid = 2 OR fi.uid = 2)
The above query is correct, however performance-wise ...
12
votes
5answers
4k views
MySQL's INSERT IGNORE INTO & foreign keys
Why in MySQL, INSERT IGNORE INTO does not change the foreign key constrain errors into warnings?
I'm trying to insert a number of records into a table and I expect MySQL to leave out the ones that ...
0
votes
2answers
270 views
MySQL Ignore is not working
I am trying to prevent duplicates from occuring using the following query, but it doesnt seem to work. Please could you tell me what the problem is?
INSERT IGNORE INTO Following SET `followingUserID` ...
3
votes
2answers
1k views
MySQL INSERT DELAYED - How to find out when inserts are done
When using MySQL's INSERT DELAYED statements, is there a way to force all Inserts to execute before continuing? Or alternatively to find out whether the Inserts are done yet?
0
votes
1answer
89 views
MySQL insert record
I have this SQL query:
insert into messages
(message, hash, date_add)
values
('message', 'hash', NOW())
ON DUPLICATE KEY IGNORE
hash is unique, what is wrong with query? i got the error:
You ...
0
votes
2answers
517 views
SQL INSERT IGNORE: skip values in a special case
I'm trying to skip an INSERT in a particular case, where one of two involved values is a specific value:
// this can work if Beech allready exists
INSERT IGNORE INTO my_table (col_wood_name, ...
2
votes
1answer
95 views
how to use IGNORE?
i have mysql code for input data:
$sql = "INSERT IGNORE INTO inspection_report ";
$sql.= "(Model, Serial_number, Line, Shift, Inspection_datetime, Range_sampling, ...
0
votes
1answer
239 views
INSERT IGNORE Inserting 0 rows
When I am attempting to run "INSERT IGNORE ..." in MYSQL to add only one variable to a table of several options, after the first insert, it refuses to work. It says "Inserted rows: 0" and doesn't ...
0
votes
3answers
1k views
MySQL + Drupal: Index ignored in INNER JOIN
Our environment:
Drupal+MySQL
Examining the query log indicates that the following query, originating from Drupal core's node_load function is taking considerable amount of time.
EXPLAIN on the ...
