Tagged Questions
1
vote
1answer
25 views
MySQL EXISTS() errors
I am getting errors from mysql when using the EXISTS function. I would go the ON DUPLICATE KEY route but the 'str' field has to be a TEXT type.
Here is my table:
CREATE TABLE ...
1
vote
1answer
38 views
MySQL Insert where not exists query won't insert if even one row exists
I am having a pretty complicated query. What I have is a table with car parts (parts_list, about 600 rows) which contains some information about the part like it's name and if it's motor dependent or ...
0
votes
5answers
35 views
Count the no of id if it is not present in another table based on condition using sql
I have a table which consists of RepId and its date.
Table: 1
RepID Date
108981 2013-04-09 00:00:00.000
108981 2013-04-09 00:00:00.000
108982 2013-04-10 00:00:00.000
108982 2013-04-11 ...
0
votes
1answer
91 views
PHP - MySQL- Table doesn't exist
I have created a table using php. When i go to access that table, i get the error -table doesnt exist. I have given all permissions from to the user when creating table. table name is in small letters ...
0
votes
1answer
37 views
mySQL multiple Join with empty result line
I have two tables CLIENSTS and PRICES and I wanto to join them in order to calculate total prices amount per item type, every year.
My query has to sum every item's value, grouping them by type, and ...
0
votes
1answer
41 views
query join to return two values even if only one exists by query statement
I'm querying database and i need it to return all values. I'm joining two tables storage_path AND users First user exists in first and in the second table by user_id field. Second user doesn't exist ...
1
vote
3answers
181 views
Why doesn't this IF NOT EXISTS statement work?
I'm trying to write a query which will INSERT a random value between 0 to 9999 INTO a table, whereas this random value is yet to exist there.
However, nothing I wrote works. It seems like a WHERE ...
1
vote
1answer
281 views
SQL - IF EXISTS UPDATE ELSE INSERT INTO
What I'm trying to do is INSERT subscribers in my database, but IF EXISTS it should UPDATE the row, ELSE INSERT INTO a new row.
Ofcourse I connect to the database first and GET the $name, $email and ...
-1
votes
2answers
45 views
MySQL EXISTS() really slow
This query
SELECT
itemID,
locationParentID,
locationID,
categoryParentID,
categoryID,
itemTitle,
itemDetails,
itemAttributes,
itemPictures,
itemFeatured,
...
0
votes
1answer
43 views
mySQL seeing if row exist
Hey all i have the following code:
$query = "SELECT * " .
"FROM wp_postmeta " .
"WHERE post_id = " . $postID . " " .
"AND meta_key = 'xTraData';";
$result = ...
0
votes
2answers
305 views
mysql node js quest — SELECT EXISTS query
what is wrong with this logic?
var selectString = 'SELECT EXISTS(SELECT 1 FROM users WHERE user="'+username+'")';
var queryUserExists = connection.query(selectString);
var resultsLength = ...
1
vote
3answers
338 views
MySQL 'if exists' error
I got a error in my MySQL query:
if not exists(select * from tb_user where user_id=1) then
select 'ok' as rul;
else
select 'not' as rul;
end if;
Where's my problem?
0
votes
1answer
89 views
mysql select if one-to-many exist
how can i check if a many-to-one relations already exist?
SampleTable
╔════╦═══════╗
║ ID ║ OB_ID ║
╠════╬═══════╣
║ 1 ║ 1 ║
║ 1 ║ 2 ║
║ 2 ║ 3 ║
║ 2 ║ 1 ║
║ 2 ║ 2 ║
║ 3 ║ ...
0
votes
2answers
593 views
PHP MYSQL How to check if record already exists when UPDATING?
For my employee's table, an e-mail is a unique field. When I instert a new employee, I check on the existance of the email. If it already exists, you get an error message:
$selectquery ="SELECT * ...
0
votes
1answer
75 views
MySQL query using 4 tables, LEFT JOINs and WHERE EXISTS
I have a total of four (4) tables I need to work with. Essentially one pulls from the other to grab data which pulls from another to grab the previous tables data and so on.
I am having trouble ...
0
votes
3answers
2k views
mysql create user if not exists
I have a query to check mysql users list for create new user.
IF (SELECT EXISTS(SELECT 1 FROM `mysql`.`user` WHERE `user` = '{{ title }}')) = 0 THEN
CREATE USER '{{ title }}'@'localhost' ...
0
votes
3answers
76 views
Select a row with specific content from a GROUP BY group
I have two tables which allow a user to request songs. Of course a song can be requested by multiple users:
| Id | Song_Name | | Requested_Id | By_IP |
+====+===========+ ...
1
vote
1answer
149 views
Adding WHERE clause if record exists
I'm working on a query wherein I have three tables to join, however the third table may or may not have a relevant record.
I currently have:
SELECT table1.val, table2.val, table.3.val
FROM
...
0
votes
1answer
53 views
optimize Mysql: get latest status of the sale
In the following query, I show the latest status of the sale (by stage, in this case the number 3). The query is based on a subquery in the status history of the sale:
SELECT v.id_sale,
IFNULL((
...
0
votes
1answer
72 views
MYSQL SELECT rows not in query
I have a statistics database for people who have visited. This table contains ID, timestamp IPv4, IPv6, User Agent and REQUEST_URI. I get false numbers by running something like
SELECT COUNT(DISTINCT ...
-2
votes
1answer
102 views
Checking if value exists in table not working [closed]
I am trying to write a script to insert values from an XML file into an SQL database.
However i can not get the script to correctly check if a value already exists in the SQL database.
heres my ...
3
votes
2answers
116 views
MySQL select join many to many tables plus IN and NOT IN
I have 3 tables: Products, Tags, and products_tags(many to many between Products and Tags).
in my schema, a product can have zero to many tags and a tag can have zero to many products.
Now i want to ...
0
votes
3answers
220 views
mysql_query always returns false with SELECT EXISTS
I'm trying to check either if a row exists or not, using the EXISTS syntax. The connect() function is working (at least in all other functions), but the this function always returns false. The query ...
1
vote
3answers
897 views
mysql insert if value not exist in another table
I have two tables that store value as VARCHAR.
I'm populating table and I want just insert values in one of tables if they are not exist in other table.
Something like:
INSERT IF IS EMPTY(SELECT * ...
1
vote
4answers
422 views
IF EXISTS UPDATE ELSE INSERT haunted me for hours - new to MySQL
This thing has been haunting me for hours. Please help! I am new to MySQL (it's MySQL 5.1 hosted at my ISP).
mysql_query("
IF EXISTS(SELECT * FROM licensing_active WHERE title_1='$title_1') THEN
...
2
votes
2answers
2k views
MySQL Procedure check if record exists before insert not working
I have looked at the other questions on here about this. It isn't working.
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `environment_admin`(
IN environment_id TEXT,
IN user_id ...
1
vote
3answers
54 views
MySQL Query - Any issues in this? [closed]
Do you see any issues with this MySQL query? It does not execute.
Any other better ideas?
INSERT INTO registration
( m_ID, e_ID, STATUS)
SELECT
:m_ID, :e_ID, 1
WHERE
EXISTS ( SELECT ...
1
vote
2answers
2k views
Query to get records present in one table but NOT in the other
I have two tables:
teacher_lm and teacher.
These tables have both the column "teacher_email"
What I need is to get the emails that are present in teacher_lm but not in teacher.
I have 2 different ...
0
votes
2answers
124 views
Assigning a BOOL from a MySQL result
I'm hacking together my first ruby script to read and write to/from mysql.
I want to know if a certain record exists. I have tried:
sql = "SELECT EXISTS(SELECT * FROM UserTrucks WHERE User = ? AND ...
0
votes
5answers
735 views
IF EXISTS THEN ELSE
It is pretty straight forward, but I could not find an answer. If the combination does exist, then UPDATE, else INSERT.
IF EXISTS(SELECT customer_id FROM payment_conditions WHERE customer_id = 2 AND ...
0
votes
7answers
522 views
Does MySQL support “IF EXISTS”?
I think I have a conflict between my knowledge on SQL Server and MySQL.
When I run this query, I get an error always from MySQL:
If EXISTS (select * from tbl_admin) THEN
select 'OK';
END IF;
...
1
vote
3answers
659 views
MySql - only update some rows if the table exists - do not want an error thrown
I want to run an update query.
The query will be run against multiple databases - not every database will have the table.
I don't want the update to be attempted if the table does not exist. I ...
3
votes
5answers
425 views
How to check if a table already exists in the database by using MySQL?
Now I am using something like:
dbResult = dbStatement.executeQuery("SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '[e2]' AND table_name = '[emp101_messages]'");
...
-1
votes
4answers
2k views
Check if value exists In MySQL
i have this table
id | name | city
------------------
1 | n1 | c1
2 | n2 | c2
3 | n3 | c3
4 | n4 | c4
and i want to check if c7 is exists under city or not
if yes do something
else do ...
0
votes
0answers
66 views
Find rows where 2 columns should contain values with set, corresponding values but do not
I have a table with the following fields ChemID and ChemName
I have mismatched values where the two should correspond and need a query to identify rows with these mismatched col values.
For ...
0
votes
1answer
112 views
insert ignore won't ignore
This code: would allways insert the Row, never detect that exists
$r = mysql_query("INSERT IGNORE INTO facebook (uid,fid) VALUES ('".$_SESSION['id']."','".$persone['id']."')") or die(mysql_error());
...
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
2answers
1k views
MySQL IF NOT EXISTS / IFNULL SELECT other column
I want to check, if a column (mysql) exists. If not, mysql should take the value from a column that definitely exists. My Query looks like this, but it does not work:
IF NOT EXISTS (SELECT `en` FROM ...
1
vote
2answers
410 views
MYSQL - insert into and a null value, how to avoid?
I have a SQL query, it looks like that:
insert into tableA(order_id, contractnotenumber, shipmentdate, comment)
values ((select entity_id from tableb where increment_id = '12345678'),
'', ...
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
2k views
how to say create procedure if not exist in MySQL
I am trying to write a script to create a procedure in MySQL database, but I want to check if it exsit first.
I know how to do it for a table, but when I use the same syntax for stored procedure, it ...
0
votes
2answers
370 views
MySQL Error querying from PHP: IF EXISTS
I have this PHP Code with Query to mysql database:
$query2 = "IF( EXISTS (SELECT * FROM shipcargo WHERE shipid='$shipid' AND item='$item' AND price='$price'))
BEGIN
UPDATE shipcargo SET ...
0
votes
1answer
82 views
MYSQL query using OR and AND on same sentence
I need help writing a query that will validate a first expression and than, if its true, will validate the following expression. Something like:
SELECT
name
FROM
names
WHERE
(tag_id = 1 OR ...
1
vote
3answers
587 views
Get date even if it doesn't exist in table from SQL SELECT statement
I have a table that stores the amount of errors according to what alarm-id it is. The table looks something like this:
|----DATE----|---ALARM_ID---|---COUNTER---|
| 2012-01-01 | 1 | ...
1
vote
7answers
13k views
check if MySQL table exists or not [duplicate]
Possible Duplicate:
MySQL check if a table exists without throwing an exception
I have a dynamic mysql query builder in my project that creates select queries from different tables.
I need ...
0
votes
0answers
431 views
Create database if not exists timeout
I'm trying to do CREATE DATABASE IF NOT EXISTS databasename but get timeout errors. The tables in the database are quite large, some 100s of MBs. Doing the same thing on a smaller database works ...
0
votes
3answers
107 views
Mysql error on update record
I am running the following just as a test to see if I have got this part of the script correct, I already have a record which is as follows in the mysql database :
If in my form I put the above info ...
2
votes
1answer
1k views
MySql - DROP table 'whatever' if exist ELSE create table 'whatever'?
I simply want to drop the table 'whatever' if it exist and then recreate table 'whatever' in a single query if possible.
DROP TABLE IF EXISTS `whatever` ELSE
CREATE TABLE `whatever`
Any idea ?
1
vote
5answers
271 views
What's the SELECT list and the subquery that is ignored in an EXISTS statement?
This is a quote from http://dev.mysql.com/doc/refman/5.0/en/exists-and-not-exists-subqueries.html: "If a subquery returns any rows at all, EXISTS subquery is TRUE, and NOT EXISTS subquery is FALSE. ...
2
votes
1answer
366 views
Text Search in Mysql Table Row and Delete/Update if Exists related to command
i have some columns in my MySQL table and some descriptions in it,
id / name / descriptions
1 / John / a1b01,Value 1,2,1,60|a1b01,Value2,1,1,50|b203c,Value 1,0,2,20
2 / Sam / ...
