I have a table members
where I fetch values by concatenating FName
and LName
(as Full_Name
) columns.
Here is my query: select CONCAT(FName,' ',LName) as Full_Name from members
The result will be like this
Full_Name
XXXXX XXXXX
XXXXXXXXXXX XXXXXXX
XXX XXXXXXXXXX
Is there any way to fetch data with a Fixed Width ? I tried with CAST
function, but it won't aligns the results
Full_Name
XXXXX XXXXX
XXXXXXXXXXX XXXXXXX
XXX XXXXXXXXXX