3
votes
1answer
74 views

LEFT OUTER JOIN (SELECT * FROM TABLE) is this possible?

I have two tables Person and Salary. Person: PersonId | Name | Surname -------------------------------- 1 John Deer 2 Mark Bear Salary: SId | ...
1
vote
1answer
29 views

How to select the last 5 records per group

I am doing a query that looks at each part transaction within a certain time period. Depending on the part, it could have maybe just 1 transaction or upwards of 1000 transactions. I need to only ...
0
votes
2answers
26 views

SQL Server Query Ordering Help Required

I have a table EMPLOYEE defined as below: CREATE TABLE EMPLOYEE ( Employee varchar(50), Manager varchar(50), field1 bit, field2 bit ) INSERT INTO EMPLOYEE VALUES ('Emp1','Mgr1',1,0) INSERT ...
0
votes
1answer
25 views

SQL: Returning Columns of multiple tables and DATEDIFF in minutes

Attempting to retrieve columns from 3 different tables, with the TurnTime's being DATEDIFF's from a 4th table CustomerName, OrderTypeName, LoanNumber, TurnTime1, TurnTime2,TurnTime3, TurnTime4 ...
2
votes
2answers
63 views

Add logic inside of a SELECT

Note in the below query that the first two queries inside of the parenthesis, I've added two repeated queries, I'm sure that this is not a good practice. I need to repeat this query anytime where I ...
0
votes
1answer
42 views

TSQL returning the first record

I have a SQL Server 2008 table with the following data (Small sample) id Date Value 20448D6F-4099-408D-85FE-11EC6690CDB8 2010-06-01 1 ...
0
votes
2answers
56 views

nested select with delete sql statement

I dunno how do I need to solve it: i've got a select statement: SELECT sum_lines.id, sum_lines.line_id, sum_lines.summary_id, sum_lines.text_content, ...
1
vote
1answer
28 views

Transaction direction Row Over Partition minipulation

I have transactional data from our Time and Attendance Clocking system that I have to calculate the total Hours in zone with. So I created a query using row over partition to do this. It works fine ...
0
votes
2answers
49 views

TSQL Merging & Grouping Values

I have this sql result color red AA color red BB color red CC color blue DD color blue EE Is there way to merge by column, to obtain the following result? color ...
1
vote
5answers
81 views

Query to return +- 30 days from a specific date

I'm trying to figure out how to write a query that will return a table of 61 record that will list a date for each record from the current date.
1
vote
1answer
70 views

Sql query unable to parse query text

I have tried creating a SQL query in vb and i keep getting an error. Here is my code: SELECT userid, Email, [password], [First Name] , [Last Name], [Date of Birth], Major FROM Students WHERE ...
0
votes
3answers
62 views

How to enhance the performance of nested query?

I have the following query but it run slowly in my sql editor ! How to enhance it (write wise) to speed the query running . SELECT year,main_code,name,father_code,main_code || '__' || year AS ...
4
votes
2answers
45 views

How can you perform a join when also using a comma-separated list of tables in an SQL select statement?

This is evidently correct syntax in SQL Server: SELECT a.id, b.name FROM Table1 a, Table2 b WHERE a.id = b.fk1 So is this: SELECT a.id, c.status FROM Table1 a JOIN Table3 c ON a.id = c.fk2 But ...
0
votes
1answer
23 views

SQL left and right parts list from a single list (All parts listed)

I have a part list for example: PartNo, Side, LotNo, BatchNo Side is either 'Left' or 'Right'. The LotNo and BatchNo for a left and right will match. If a part doesn't have a match, I need to ...
1
vote
3answers
93 views

Delete the data which exist in one table and not exist in the other one?

I want to select all rows which exist in specific table and not exist in the other table to delete them . I write the following query but i get rows exist in both tables !! SELECT UNIQUE ...
0
votes
2answers
70 views

Searching employees by name shows all rows (T-SQL)

friends. I got stuck with this problem long ago and still there. There is a table in MS SQL Server database. There are employees there. Table is normalized. I have a stored procedure with a parameter ...
2
votes
1answer
59 views

T-SQL; repreat one value for a time period by day from a table

I'm having this scenario: One table with entry_time (datetime) and value (float). I retrive timestamps at different intervals with same or different values. Like this: date_time value 2012-12-08 ...
0
votes
1answer
40 views

Advice for making simple administration website for a local buisness: Orders, Clients, Stock - sql server 2008 express

Im building this website to keep learning transact sql and improving my scripting skills, im not using the management studio, Im scripting everything. So, what i need is: The clients to have many ...
0
votes
3answers
66 views

How to write this LINQ ( or SQL) query?

I have two tables like this: News Id Title LanguageId Language table: Languages Id Name IsDefault Now with LanguageId as parameter (for example en-US), and ...
2
votes
2answers
79 views

SQL Server query to find clustered indexes

Is it possible to write a query that returns all tables that have clustered indexes that are not based on an identity key?
0
votes
1answer
93 views

ISNULL/COALESCE for multiple fields

Consider the following data model: Customers CustNum | First Name | Last Name 555 John Doe CustomerAddresses CustNum | ShippingAddress| Line1 | Line2 | City | ...
0
votes
1answer
26 views

comparing results from live and test servers in sql

here is my situation. I have 2 databases which is a live and test database, the live is updated with data and the test database has data one month later than the live. so i am simulating the work ...
0
votes
1answer
64 views

I need to write query for numbers of occurance

file_id status date_occure 1 1 2013-04-10:3:26 1 2 2013-04-10:3:27 1 3 2013-04-10:3:28 only rows whis same file_id and have 3 statuses :1,2,3 whis same ...
2
votes
3answers
87 views

Max sql server without group by

CallID StartTime EndTime Querytime 1692 2012-11-20 11:52:00.000 2012-11-20 11:52:00.300 0.300 1693 2012-11-20 11:52:00.000 2012-11-20 11:52:00.100 0.100 ...
1
vote
1answer
148 views

subtract values of two rows and inserting it into a new column (not subsequent rows)

relevant to my previous question here: how to insert subtract of each two subsequent rows and inserting it into a new column I have another question. In the following table; I want to calculate the ...
0
votes
2answers
139 views

how to insert subtract of each two subsequent rows and inserting it into a new column

I have a question about writing query in sql. in the picture 1 I want to subtract row 2 from row1 (in column date) and insert it's result in row1 of new column with the title of Recency. and again ...
1
vote
2answers
70 views

Improving poor intermittent SQL query performance

I have a moderately complex nested T-SQL query, which for the most part has good performance, except at the start of each of my 2-week pay periods (where there are fewer records to process!) the query ...
-2
votes
4answers
84 views

how to check empty field in sql

i have a sql query which shows address1 in a field and address2 as 'address1,address2'.My query is (S.Address1 + ' , ' + S.Address2)as Address1 But when the values in the Address2 is blank it ...
0
votes
2answers
61 views

SQL Server data display

I want to display a date column in a particular format in SQL Server and need some help with that. Current display 2013-04-04 15:45:38.497, required display 20130404154538 With the below function ...
0
votes
1answer
51 views

Count/Group T-SQL

Hello The following is a sample data. DateGroupID StartDate EndDate 1 2013-01-01 2013-01-07 2 2013-01-08 2013-01-14 3 2013-01-15 ...
0
votes
5answers
89 views

Querying the monthly average population

I have a table called patients. I'm trying to query the Monthly Average Daily Patients. For example, if I query today: select count(*) from patients where active=1 It returns: ----------- 213 (1 ...
0
votes
2answers
32 views

Handling multiple list box options by user Interface as input for store precedure

VB6 user interface have multiple types of data selection , like list boxes, combo boxes etc, based on which user refreshes and gets the data, moreover most of it are not compulsory parameter. My ...
1
vote
1answer
69 views

Is Execution/Min in SQL Server Management Studio's Expensive Queries the number of executions or just an estimate?

We are occasionally seeing a query come up as over 11,000 in Activity Monitor under Expensive Queries. I see that in the code a query is being executed in a loop, which I realize is not the best ...
1
vote
4answers
88 views

T-Sql: turn multiple rows into one row

How does one turn these multiple rows into one row? N and Y are bool values. Id IsPnt IsPms, IsPdt 1 N Y N 1 N Y N 1 Y N N into this Id IsPnt IsPms, IsPdt ...
0
votes
1answer
30 views

Need assistance with T-SQL query

I have the following table... orderID | itemID --------------------- 100 3425 100 3432 102 4443 102 8754 102 3425 103 6511 103 1176 103 ...
0
votes
2answers
51 views

Mysql synchronize the database with a new database [closed]

I need synchronize a database(just new records maintaining the auto increment) with a new database (blank) while maintaining auto increment and mirroring the data entered in both. Is there a setting ...
1
vote
3answers
70 views

Showing alternate rows of one column to the other column

I have the following table: Vehicle Id Arrival Time Position 4 20 200 4 10 100 4 30 300 4 40 ...
1
vote
1answer
36 views

SQL Aggregation in Reporting Services

I am migrating a report to MS Reporting Services from powerbuilder with ingres database. I have the following dataset: Code| Code Description | Carer_Id| Child_id | Child_age ...
2
votes
2answers
54 views

Union, except, or intercept to use default data in select?

I have three tables, one is a table of default values. What I need to do is to select the values of TableA and TableB, and back fill any missing values from the selection of default values. Each ...
1
vote
2answers
80 views

SQL Server : Getting distinct count on every column in a large view

I have a large SQL Server 2012 database with a couple of views I need to analyse. What I want to know for each view is the number of unique values of each column in the view. I could not find any ...
4
votes
5answers
150 views

Why and when a LEFT JOIN with condition in WHERE clause is not equivalent to the same LEFT JOIN in ON? [duplicate]

I'm experiencing a very confusing situation that makes me question all my understanding of joins in SQL Server. SELECT t1.f2 FROM t1 LEFT JOIN t2 ON t1.f1 = t2.f1 AND cond2 AND t2.f3 > ...
1
vote
3answers
155 views

Count on SQL Function return value

I am trying to count the number of records in my table that make a function I created return 1. Here is what I have: CREATE FUNCTION isErrorMismatch (@theType nvarchar(1), @theExCode nvarchar(2)) ...
0
votes
2answers
21 views

find distinct R_ID from table

Create table Client_Registration ( Client_ID int, Rad_ID int ); INSERT INTO Client_Registration (Client_ID,Rad_ID) VALUES ('1','1'); INSERT INTO Client_Registration (Client_ID,Rad_ID) VALUES ...
-1
votes
2answers
90 views

SQL Server - Compare dates or datetime stored as a string or nvarchar?

I made a date according to the datetime format. But, I stored this in my DB as a string/nvarchar and not a datetime. Will I be able to compare such dates ? Is this a bad practice ? I am using ...
1
vote
2answers
53 views

Two sorted subqueries into one result

So I have two subqueries that return the same columns from the same table Query #1: SELECT ...
3
votes
4answers
94 views

SQL Server IN Operator using varchar and bigint

I am having a few problems using a stored procedure to search and return a list of matching IDs using the SQL IN operator. The issue I think is related to datatypes. A parameter is passed to the ...
4
votes
2answers
73 views

Optimal Performance for Joining on Range of Values

I have a really big table that contains integer representations of IP addresses and a second table that has starting and ending ranges of integers representations of IP addresses. The second table is ...
-3
votes
1answer
76 views

T-SQL logic idea needed

Hey guys again your expertise is highly needed here.. A customer visits a bank, an agent helped him with his account.Again the same customer comes back gain in the same day and another cashier helped ...
-2
votes
3answers
66 views

How to select first and last records between certain date parameters?

I need a Query to extract the first instance and last instance only between date parameters. I have a Table recording financial information with financialyearenddate field linked to Company table via ...
3
votes
4answers
91 views

How to order by an arbitrary condition in SQL

I have the following table: CREATE TABLE Bable ( id int identity primary key, name varchar(20), about varchar(30) ); INSERT INTO Bable (name,about) VALUES ('ООО Name Firm ...

1 2 3 4 5 15