Tagged Questions
-1
votes
4answers
162 views
IF EXISTS in WHERE clause
I ran into a problem this days. In my MS SQL Database I have a table of articles (details of them like insert date, insert user and other staffs) and one table with the body of articles in multiple ...
0
votes
1answer
97 views
update SQL statement and using if exists
I am trying to select a value from one table and insert it into a specfic section of another table. I have the following sql (mssql 2008)
if exists (select datesubmitted from JADHist where ...
1
vote
5answers
108 views
How to exclude records with certain values in sql select
How do I only select the stores that don't have client 5?
StoreId ClientId
------- ---------
1 4
1 5
2 5
2 6
2 7
3 ...
2
votes
2answers
158 views
If Exist or Exists?
Is it possible to test two EXISTS conditions in a single IF SQL statement? I've tried the following.
IF EXIST (SELECT * FROM tblOne WHERE field1 = @parm1 AND field2 = @parm2)
OR
EXIST ...
0
votes
1answer
185 views
Composite primary keys with PetaPoco for Exists and GetById methods
I found this nice brach of PetaPoco by schootime wich handles composite primary keys.
Now what I didn't find is how he handled in is version of PetaPoco methods wich require a primary key, with ...
0
votes
1answer
95 views
What can I do to speed up this SQL Query?
I've created this SQL query with the help of @Dems :-)
Here is some detail, I tried to make a SQLFiddle but I kept getting errors with my variables... This works in Sql Server 2008... My question ...
3
votes
2answers
179 views
T-SQL use EXISTS as Column
I'm wondering whether I can use EXISTS (or something similar) in column like this:
SELECT Column1,
Column2,
EXISTS (SELECT 1 FROM Table2 T2 WHERE T2.Column = T1.Column) AS IsFlag
FROM ...
1
vote
3answers
190 views
SQL: How do I check for records in one table that aren't in another?
I want to find records that are in one table but not in another. Except the records aren't formed the same. So I'm wanting to determine the columns I want to use to compare against. I thought I had ...
0
votes
3answers
332 views
Selecting rows with the nearest date using SQL
I have a SQL statement.
SELECT
ID, LOCATION, CODE,MAX(DATE),FLAG
FROM
TABLE1
WHERE
DATE <= CONVERT(DATETIME,'11-11-2012')
AND EXISTS (SELECT * FROM #TEMP_CODE WHERE ...
2
votes
3answers
282 views
Explanation of using the operator EXISTS on a correlated subqueries
What is an explanation of the mechanics behind the following Query?
It looks like a powerful method of doing dynamic filtering on a table.
CREATE TABLE tbl (ID INT, amt INT)
INSERT tbl VALUES
(1,1), ...
1
vote
2answers
99 views
Problems with SQL EXISTS
I'm going mad on this one. I have the following SP:
ALTER PROCEDURE [BankImport].[spBI_getIsBatchUnique]
@batchName varchar = 500
AS
BEGIN
SET NOCOUNT ON;
IF (EXISTS (SELECT 1 FROM ...
0
votes
3answers
574 views
Dos Command if exist does not work properly
i know its not god to ask ms dos related questions now. but i have a small problem
i am creating a installer project to a application form that application i need to execute a create database script ...
0
votes
4answers
917 views
Get Customers List who have not ordered a particular kind of product
It is in SQL Server 2008 R2.
We have 3 products, Orders and Customers:
P1
P2
P3
We'd like to know Customers who ordered P1 and P2 BUT NOT P3. We don't want to get Customers who ordered all 3 kinds ...
0
votes
1answer
483 views
when choose CROSS APPLY and when EXISTS?
I read, CROSS APPLY is just like JOIN.. and I think JOIN can be accomplished with EXISTS also (correlated sub query)
I am confused, what is the difference in using CROSS APPLY and EXISTS?
when ...
0
votes
1answer
115 views
How to check is a row value exists for each user in the database
I'm creating a database which tracks customer contact, the target contact date for initial contact is 90 working days from the first date that a custom calls us, I have created a function to handle ...
0
votes
1answer
494 views
Trying to change SQL statement to use EXISTS instead of IN
I was reading (and am still learning) about the difference between the EXISTS and IN operators in SQL. Is it possible to change the following statement so it uses an EXISTS rather than IN? I've tried ...
0
votes
1answer
212 views
Exists in where clause return incorrect result
Please consider this Query:
SELECT tesd.State_Code,
tesd.City_Code,
tesd.Row_ID,
tesd.Qsno,
tesd.Total_Period,
tesd.Current_Period,
tesd.Week,
tesd.Block_No,
tesd.Family_ID,
...
3
votes
2answers
29k views
SQL Server: IF EXISTS ; ELSE
I have a tableA:
ID value
1 100
2 101
2 444
3 501
Also TableB
ID Code
1
2
Now I want to populate col = code of table B if there exists ID = 2 in tableA. for multiple values , get max ...
5
votes
1answer
21k views
IF EXISTS in T-SQL
If we have a SELECT statement inside an IF EXISTS, does the execution stops as soon as it finds a record in the table? For an e.g.
IF EXISTS(SELECT * FROM table1 WHERE Name='John' )
return 1
...
4
votes
1answer
882 views
IN clause, NULL handling in TSQL/SQL Server?
Suppose there is a table like this:
f1 f2
----------
1 3
4 8
6 4
NULL 1
The following query works as expected :
SELECT f2
FROM Table_1 a
WHERE NOT EXISTS (SELECT *
...
0
votes
2answers
558 views
If Exists in trigger
Is there a way I can check if a value exists in a table I want to insert into activated by a trigger? If the value does exist, I want nothing to be done and if it doesn't I would like it to be ...
4
votes
3answers
1k views
How do you use a T-SQL variable within an if OBJECT_ID to check if a table exists?
What I am trying to do with the following code is have it grab all the database names then loop through those databases check to see if the table tblAdminLogin exists and if it does update the ...
4
votes
2answers
2k views
Sql Server 2005 - Insert if not exists
There is lots of information in the internet regarding this common "problem".
Solutions like:
IF NOT EXISTS() BEGIN INSERT INTO (...) END
are not thread-safe in my opinion and you will probably ...
0
votes
2answers
8k views
Sql Server - Query help (group by with having MAX)
HI,
I'm having a huge problem with one query, this is the data that I have in my table:
entityId groupId groupDepth
-------------------- -------------------- -----------
...
0
votes
0answers
972 views
insert and update if a record exists else not , race condition
if exists (select itemcode from item where itemcode=1120)
update item
set itemname = 'laptop'
where itemcode = 1120
else
insert into item (itemcode,itemname)
values (1120,'laptop')
it will be ...
0
votes
2answers
5k views
check if table exists SQL
Hi i have a query as below,
INSERT INTO CarnetMaster.GlassLookupCapacitySpecs
(ID, CODE, NVIC, RELEASE, DISCON, DRV, TORQUE, KW, BORESTROKE, VINNUMBER, WIDTH, WHEELBASE, SEATS, COMPRATIO, TOWCAP, ...
0
votes
4answers
95 views
How can I modify the following code to have the same results with “exists”?(SQL)
I have been trying for hours but I can't think of anything as exists only returns boolean and every time I am trying to use exists I either get back the entire list of results or none.
This is the ...
0
votes
2answers
922 views
The old IN vs. Exists vs. Left Join (Where ___ Is or Is Not Null); Performance
I have found my self in quite a pickle. I have tables of only one column (supression or inclusion lists) that are more or less varchar(25) but the thing is I won't have time to index them before using ...
0
votes
5answers
185 views
Help with SQL Server procedure rollback
I need some help with this procedure:
What its supposed to do is try to insert a new user if there is no other with same NAME.
If there is a already an user, it should rollback else commit. But it ...
10
votes
6answers
815 views
SQL-Query: EXISTS in Subtable
I have two tables tabData and tabDataDetail.
I want all idData(PK) from Parent-Table(tabData) that have only rows in Child-Table(tabDataDetail, FK is fiData) with:
fiActionCode=11 alone
or
...
1
vote
2answers
2k views
Union and If Exists - not working together - Please help
I need to get dummy values if they do no rows returned from table. The If exists works by itself, but gives error with a Union. Can someone please guide me with a solution or a workaround?
create ...
9
votes
6answers
335 views
Which is faster, EXISTS before or after the INSERT?
I have an SP in SQL Server which runs hundreds of times a minute, and needs to check incoming traffic against a database. At the moment it does the following
INSERT INTO table
SELECT @value1,@value2 ...
1
vote
2answers
723 views
MS SQL Server 2000 - check for existing database error
I use MS SQL Server 2000 SP4 and I have this part of script, that checks for existing database:
IF EXISTS (SELECT * FROM sysdatabases WHERE name='MY_DBNAME')
BEGIN
PRINT 'Using the existing ...
