Viewing 7 posts - 16 through 22 (of 22 total)
Thank you for all the help with the table structure. However I am still looking for an answer to my original question - how can I query to find the...
November 12, 2014 at 7:58 am
CREATE TABLE [dbo].[Games] (
[Game_ID] INT IDENTITY (1, 1) NOT NULL,
...
November 11, 2014 at 8:14 am
CREATE TABLE [dbo].[Games] (
[Game_ID] INT IDENTITY (1, 1) NOT NULL,
...
November 10, 2014 at 9:06 pm
Since you want to criticize my table structure and imply that I am doing this for a school project and am therefore cheating, here is the actual table structure:
USE [DB_75956_cd]
GO
/******...
November 7, 2014 at 11:41 pm
I will have to look into it. I understand everything except the "ROW_NUMBER() OVER( ORDER BY GameDate) -
ROW_NUMBER()...
November 5, 2014 at 2:53 pm
The Games Table:
CREATE TABLE [dbo].[Games](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Lge] [nvarchar](255) NULL,
[GameDate] [date] NULL,
[HomeTeam] [nvarchar](255) NULL,
[Home_Score] [float] NULL,
[AwayTeam] [nvarchar](255) NULL,
[Away_Score] [float] NULL)
INSERT INTO [dbo].[Games2]
...
November 5, 2014 at 1:10 pm
Viewing 7 posts - 16 through 22 (of 22 total)