Viewing 10 posts - 16 through 25 (of 25 total)
You can install the Developer Edition on Windows 7, XP so i'm guessing Vista would be okay too. I have SQL 2008 Developer Edition on my Win 7 machine.
September 8, 2011 at 2:12 am
That is true, that is why i added the word "like" to my comment, i actually have these in the SQL - sorry if i gave the impression that...
September 8, 2010 at 2:26 am
Thanks for all the help, but i have done is something like
SELECT *
FROM tablea a
WHERE a.value ='xxx'
OR a.EndDate < '24/08/2010'
AND a.EndDate = '24/08/2010'
AND...
September 8, 2010 at 1:57 am
Steve,
"Steve
As I understand it, the actual data Gordon is working on does not have a Date or Datetime field but rather a char(10) field holding English style dates such as...
September 6, 2010 at 2:12 am
It would seem that joining the date and time is the only way;
SELECT
CONVERT(char(10), YearChar, 103) + ' '+ CONVERT(Char(8), tbl_DateTime.Time,13),
Cast(tbl_DateTime.Time as char(8))
FROM
tbl_DateTime
WHERE
CONVERT(char(10),...
September 5, 2010 at 10:56 am
Old Hand,
Whilst that will work, i did actually state on the initial post "i don't wish to go down the route of creating a date time field along the lines...
September 5, 2010 at 12:22 am
Ron,
If the date is 23/08/2010 the subsequent time field for that row will define if it is night shift or not so a single row would have the following
Date ...
September 4, 2010 at 2:46 pm
Viewing 10 posts - 16 through 25 (of 25 total)