Viewing 15 posts - 3,196 through 3,210 (of 5,111 total)
A CTE would be a better option:WITH AboveAvg AS (
SELECT ID, [Open_Time],
CASE WHEN [Open_Time] > AVG([Open_Time]) OVER () * 1.5 THEN...
September 6, 2017 at 7:50 am
This might help you get started. I've annotated it, so please ask any questions. This isn't tested, however, as I did this on our Sandbox Instance, and I haven't set...
September 6, 2017 at 7:45 am
polo.csit - Wednesday, September 6, 2017 5:51 AMi have web url with username and password but i need http code
This doesn't explain...
September 6, 2017 at 6:02 am
Welcome to SSC.
Normally when posting T-SQL queries, the best way is to provide DDL, DLM and Expected output in consumable formats (have a look at the link in...
September 6, 2017 at 5:56 am
using sql server how to send the ap.please send me...
September 6, 2017 at 5:45 am
September 6, 2017 at 5:38 am
I thought the same but I executed both MDX on the same client pc with...
September 6, 2017 at 5:32 am
I'd hazard a guess it's the language of the connection you're using. On one it's set to (at a guess) English, but on the other something else (non English).
September 6, 2017 at 4:19 am
September 6, 2017 at 3:20 am
September 6, 2017 at 2:50 am
September 6, 2017 at 2:31 am
September 6, 2017 at 1:57 am
Without Sample data we can't write a query, however, one option is to use a CTE and put row numbering in, and then LEFT JOIN to Row Number 1. An...
September 5, 2017 at 9:57 am
Do you have any kind of key? How do we determine what rows are linked to which in your data, as it currently appears to be unordered.
Once we...
September 5, 2017 at 9:44 am
This is possible yes, but who will be doing the update? You're either going to need to give ever Login/Role that might update the record permission to send emails via...
September 5, 2017 at 9:35 am
Viewing 15 posts - 3,196 through 3,210 (of 5,111 total)