U
Unforgiven
Hello All,
I have the following query...
SELECT Demographics.Full_Name,
Demographics.Year_of_birth,
Status.Status_OK,
SUM(2004 - Demographics.Year_of_birth) AS Age
FROM Demographics
INNER JOIN Status ON Demographics.PrimaryKey = Status.PrimaryKey
GROUP BY Demographics.Full_Name, Demographics.Year_of_birth,
Status.Status_OK
I also have a grid on VB ASP.NET web form which is boound to this query that
has 3 columns
Full Name, Year of Birth and Status
How can I create a 4th column in the data grid to display the age that is
returned by the query in VS.NET 2003?
I'm new to .NET
Thanks,
-U
I have the following query...
SELECT Demographics.Full_Name,
Demographics.Year_of_birth,
Status.Status_OK,
SUM(2004 - Demographics.Year_of_birth) AS Age
FROM Demographics
INNER JOIN Status ON Demographics.PrimaryKey = Status.PrimaryKey
GROUP BY Demographics.Full_Name, Demographics.Year_of_birth,
Status.Status_OK
I also have a grid on VB ASP.NET web form which is boound to this query that
has 3 columns
Full Name, Year of Birth and Status
How can I create a 4th column in the data grid to display the age that is
returned by the query in VS.NET 2003?
I'm new to .NET
Thanks,
-U