Does anyone know why my column headings won't show up as desired when using the 'AS' SQL reserved word? Example:
SELECT Quantity AS Qty, ProductDescription AS Description, UnitRetail AS Retail, FROM Parts;
Some will show correctly and others won't.
Thanks
SELECT Quantity AS Qty, ProductDescription AS Description, UnitRetail AS Retail, FROM Parts;
Some will show correctly and others won't.
Thanks