Viewing 5 posts - 1 through 6 (of 6 total)
Resolved the issue in TSQL using the CTE.
Thanks everyone for your suggestion and help 🙂
April 10, 2012 at 1:28 pm
Thanks for the help everyone 🙂
April 10, 2012 at 1:26 pm
Below is the updated INSERT statement
Thanks.
--Insert some sampele data
INSERT INTO dbo.Flights(
FLIGHT_PATH_START
...
April 6, 2012 at 3:28 pm
Please let me know if this helps in little bit of clarification.
USe MyDb
--Create Table scripts
CREATE TABLE dbo.Flights
(
[FLIGHT_PATH_START] [varchar](3) NULL,
[FLIGHT_PATH_END] [varchar](3) NULL,
[STOPS] [int] NULL,
[FLIGHT_1_OPERATING_DAY] [int] NULL,
[FLIGHT_1_OPERATING_DAY] [int]...
April 6, 2012 at 1:33 pm
Sorry, if my post looks weired. I was looking to get the CSV seperated values or seperated by '\' for the 'Day of the Week' column...based on the distinct...
April 5, 2012 at 4:16 pm
Viewing 5 posts - 1 through 6 (of 6 total)