unisysguru
Programmer
I am new to RDMS.
I have a Select where the Column is wider than the data.
SELECT data1, data2 FROM jobq;
I get:
data1 data2
------------------- -------------------
item1 item2
item1a item2a
would like to shorten width to be:
data1 data2
------- -------
item1 item2
item1a item2a
How do I do this?
Bill
I have a Select where the Column is wider than the data.
SELECT data1, data2 FROM jobq;
I get:
data1 data2
------------------- -------------------
item1 item2
item1a item2a
would like to shorten width to be:
data1 data2
------- -------
item1 item2
item1a item2a
How do I do this?
Bill