Viewing 13 posts - 1 through 13 (of 13 total)
May 7, 2018 at 8:15 am
USE Sandbox;
GO
/*
All odd alignment issues courtesy of SSC's text editor 🙂
*/
CREATE TABLE SampleTable...
May 1, 2018 at 10:30 am
ScottPletcher - Wednesday, April 25, 2018 11:11 AM
SELECT *
FROM PeopleDetail PD
WHERE PD.Name IN (
SELECT Name
FROM People
)
Scott,
Thanks for looking...
April 25, 2018 at 11:29 am
January 15, 2018 at 8:55 am
January 9, 2018 at 1:02 pm
Here you go...
CREATE TABLE [dbo].[Orders](
[OrderNo] [nvarchar](50) NOT NULL,
[CreateDate] datetime NOT NULL,
)
GO
INSERT INTO Orders VALUES (6106,'2017-12-28 10:28:11');
INSERT INTO Orders VALUES (6106,'2017-12-28 18:28:11');
January 9, 2018 at 8:29 am
Thank you Scott!
January 8, 2018 at 3:31 pm
Viewing 13 posts - 1 through 13 (of 13 total)