Viewing 6 posts - 1 through 6 (of 6 total)
They can also be used on a view as long as it is a persisted view.
March 21, 2014 at 5:34 am
Hi
I thought you would be able to work out the easy part
select ' select softwaremanufacturer,productname,productversion' as c1
union
select ' ,'+c.name as c1
from syscolumns c inner join sysobjects o on c.id...
August 19, 2013 at 2:22 am
There are leading spaces in the select which are very important for the order in which the statements return
August 16, 2013 at 2:12 am
Hi The result of the following can be run as direct sql for solution
select ' select softwaremanufacturer,productname,productversion'
union
select ' ,'+c.name
from syscolumns c inner join sysobjects o on c.id...
August 13, 2013 at 8:04 am
Your right, but for the applications i use it for i.e. checking whether someone is the correct age to apply for insurance policies when contacting us my code is sufficient,...
March 7, 2008 at 3:16 am
Yes The 1 and the 0 are definitely the wrong way round, leap year's are a problem, but try using cast(DateDiff("d", DateOfBirth, getdate()) / 365.25 as tinyint) which is the...
March 7, 2008 at 2:29 am
Viewing 6 posts - 1 through 6 (of 6 total)