Viewing 15 posts - 1,291 through 1,305 (of 26,490 total)
CREATE FUNCTION dbo.fn_GetEventDates(July 18, 2018 at 3:48 pm
Anything you may get from people on the internet is simply opinion. You need to contact Microsoft or your software provider for the definitive answer you seek.
Even then you...
July 18, 2018 at 3:46 pm
Here is my suggestion. Start looking at your data. No filters (meaning no WHERE clause) and make sure the result set is what you are expecting. You may also want...
July 18, 2018 at 2:50 pm
id date
1 2018-07-16
2 2018-07-18
3 2018-07-19
2 2018-07-19
3 ...
July 18, 2018 at 2:39 pm
Or this:
CREATE TABLE [dbo].[test](
[id] [int] NULL,
[date] [date] NULL
) ON [PRIMARY]
GO
INSERT [dbo].[test] ([id], [date])
VALUES (1, CAST(N'2018-07-16' AS Date))
,...
July 18, 2018 at 2:36 pm
You're more patient than I am then. Now-a-days when I get a call like...
July 18, 2018 at 11:39 am
What does this function do: [MyDB].dbo.MyProc.
Where does this column come from: [SomeQuery].
July 18, 2018 at 11:32 am
July 18, 2018 at 10:52 am
TBH, objection handling is, as far as a sales weasel is concerned, just...
July 18, 2018 at 10:50 am
July 18, 2018 at 10:34 am
July 18, 2018 at 10:22 am
July 18, 2018 at 10:12 am
I need a help with Converting an Excel Formula below into TSQL
Excel Formula:
July 18, 2018 at 10:06 am
Viewing 15 posts - 1,291 through 1,305 (of 26,490 total)