2
I have three columns, belonging to the same table in the database, these being: Growth, Financial Autonomy and Rationliquidity; All columns are bit type.
What I need is to group the three fields in one column, that is, if I do:
SELECT IsNull(Crescimento,0) As Crescimento,
IsNull(AutonomiaFinanceira,0) As AutonomiaFinanceira,
IsNull(RacioLiquidez,0) As RacioLiquidez
from Estado
I get the following:
However I want to group these three fields in one column, for example: 000 or 0,0,0.
What would be the
SGDB
?– Homer Simpson
Microsoft SQL Server Management Studio
– IdkWhy