Viewing 15 posts - 1,306 through 1,320 (of 3,489 total)
Joe Torre - Wednesday, March 14, 2018 12:32 PMOr Access
Eeeeeeuuuwwww... Joe said a bad word!
March 14, 2018 at 2:32 pm
March 14, 2018 at 8:29 am
WHERE [SaleDate]>DATEADD("m",-3,GETDATE()) ?
https://docs.microsoft.com/en-us/sql/t-sql/functions/dateadd-transact-sql
March 14, 2018 at 6:37 am
Like this?
SELECT YrMo
, OType
, Orders
, Total
FROM
(SELECT '13/03'AS YrMo
, 'Sales Order' AS OType
, 300 AS Orders
, 15000 AS Total
March 12, 2018 at 10:12 pm
Agreed. Doesn't sound terribly complicated given a proper description of what data you start with and the output desired...
March 12, 2018 at 4:56 pm
What do "a", "b", "c" represent? Actual values or first value, second value, third value?
Write a query to get the below result. I need output as below
March 12, 2018 at 4:16 pm
what happened when you tested the code provided by deepika0928?
What exactly is the point of your post? It's just a bunch of random-ish code... Did you try any of...
March 12, 2018 at 3:57 pm
Makes me think the OP is thinking in terms of Oracle, which can do that...
March 12, 2018 at 3:52 pm
People here are more than happy to help, but you have to do your homework first. If you don't at least try to solve the problem yourself (post what you...
March 12, 2018 at 1:56 pm
Do the databases have exactly the same tables and records?
March 11, 2018 at 9:49 pm
Oh, now I get it! (One day, I swear I'm gonna learn how to read!)
Basically, you need two things to do this - a ForEach File Loop, and an...
March 8, 2018 at 9:29 pm
March 8, 2018 at 6:13 pm
"automated unmanned job" - the "processing database" would have an autoexec macro in it that kicks off the processing of the databases in some folder (uses DIR() to loop over...
March 8, 2018 at 11:22 am
"I can't use CHOOSE"? What kind of requirement is that?
You have to do it in SSRS, because you said you can't modify the underlying query. How do they suggest...
March 5, 2018 at 11:40 am
Are you allowed to create calculated fields in your report definition?=CHOOSE(Fields!GradeLevel.Value,"Pre K","K","1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th", "10th", "11th", "12th")
(You could alter it to include different messages for each...
March 5, 2018 at 1:02 am
Viewing 15 posts - 1,306 through 1,320 (of 3,489 total)