Tagged Questions
The query-help tag has no wiki summary.
7
votes
4answers
1k views
Mathematical formula for calculating call duration
I was working for a telecom company some years ago and I had to generate a formula which calculates duration of a call according to the following algorithm:
t1 is the first period
t2 is the ...
2
votes
2answers
556 views
MySQL - find difference between rows of the same table
I have a table containing aggregated results with timestamps - meaning each result per time is the total so far:
date | time | ip | result
---------------------------------------
...
1
vote
3answers
189 views
SQL query help with GROUPing and nested queries
Given are two tables,
Table A containing customerid, lastchange, internallink
Table B containing internallink, turnover
(I'm simplyfying here and changing it to a generic example, the actual ...
1
vote
5answers
85 views
Update Statements
I am a beginner SQL user (not formally trained; OJT only) and need some assistance with a simple update statement. I would like to write an update statement that allows me to list ID's. The ...
0
votes
3answers
92 views
SQL Statement Help - Select Only Customers with no order for past 3 months
hope you all are fine.
I need to make a query . Kindly help me with this
Here is the Scenario:
Let say We have to Tables
1. Customers
2. Orders
I want to get only those customers ...
0
votes
8answers
582 views
How to do conditional SQL Server statements?
I have a database with event information, including date (in MMDDYYYY format). is it possible to write an SQL Server statement to only get rows that fall within a certain time frame?
something like ...