Viewing 8 posts - 1 through 8 (of 8 total)
This is the same guy who says he's pretty good at SQL. I think I'm going to disagree. If you can't normalize tables, how can you be 'pretty good'?
October 15, 2018 at 8:34 am
DECLARE @ndate nvarchar(50) = N'2010/03/15 01'
SET @Ndate = @ndate + ':00:00'
SELECT CONVERT(datetime, @ndate, 101)
October 10, 2018 at 7:58 am
As a C# developer I would say that I could write a routine like this in short order. I will also add that it would be a huge mistake on...
October 3, 2018 at 8:35 am
Would the MERGE statement be of value here? There is a good article here:
https://www.mssqltips.com/sqlservertip/5373/sql-server-merge-statement-usage-and-examples/
September 26, 2018 at 8:05 am
September 20, 2018 at 7:48 am
How about something like this?
SELECT column1, column2, column3, ...
INTO db.schema.newtable
FROM oldtable
WHERE condition;
September 11, 2018 at 8:11 am
Thank you for your respnses
September 10, 2018 at 3:48 pm
Viewing 8 posts - 1 through 8 (of 8 total)