Viewing 6 posts - 31 through 36 (of 36 total)
Ok so here is the revised posting.
USE [db_ABC]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
---Create a sample table
CREATE TABLE [dbo].[DeptArrival](
[FlightNumber] [int] NOT NULL,
[ScheduleDeptDate] [datetime] NOT NULL,
[ActualArrivalDay] [tinyint] NULL,
[ActualArrivalDate] [datetime] NULL
) ON [PRIMARY]
GO
--Insert some...
September 6, 2012 at 11:31 am
Thanks u all. That helped
September 6, 2012 at 10:28 am
Thanks for trying to answer my queries. To Seans' questions...
You have two rows here and one of them is the OriginalAircraftNumber and one becomes the FinalAircraftNumber. What can you use...
August 30, 2012 at 2:09 pm
Yes, I want to GROUP BY on the first 7 columns. However, I'm not sure if that will resolve my issue.
In my above example, here are the scenarios,
- if I...
August 8, 2012 at 4:05 pm
This issue has been resolved. Our DBAs added another column and that gives us what we were looking for.
Thanks for all of your comments.
June 22, 2012 at 9:59 am
Thanks Sean. This helped me to get what I was looking for now. I'll keep your suggestion for the future posts.
Once again thanks so much
June 21, 2012 at 1:30 pm
Viewing 6 posts - 31 through 36 (of 36 total)