Hello all,
I just started using SQL to create a report. I got the syntax working
but I have absolutely no idea of how to format data. Can anyone kindly
look at my code and help me? I thank you in advance.
Details:-
The code:
SELECT Column1, Column2, Column3
FROM WORKSHEET
Output:
Column 1 Column2 Column3
23.00 a 23a
23.00 b age2
The output I want:
aCol1 aCol2 aCol3
23 a 23a
23 b age2
NOTE: the column headings have to be bolded.
In conclusion, the following is what I want:
. the column data should be centered
. how to change column headings and make them bold
. the numeric value should be set as integer value (i.e. 12) instead
of default double value (i.e. 12.00)
Author - 30 Jun 2008 19:09 GMT
On Jun 30, 1:59 pm, mik...@hotmail.com wrote:
> Hello all,
>
[quoted text clipped - 26 lines]
> . the numeric value should be set as integer value (i.e. 12) instead
> of default double value (i.e. 12.00)
SELECT CAST(Column1 as decimal(8, 0)) as aCol1, Column2 as aCol2,
Column3 as aCol3
FROM WORKSHEET
As for bolding and centering, they are not part of SQL, you have to do
it in your client application.
HTH.
Aaron Bertrand [SQL Server MVP] - 30 Jun 2008 19:36 GMT
I answered this in another group. Please don't multi-post.
On 6/30/08 1:59 PM, in article
a846eded-4713-4512-93a3-f5187eed3f3b@l64g2000hse.googlegroups.com,
> Hello all,
>
[quoted text clipped - 29 lines]
>
> of default double value (i.e. 12.00)