I have the table tblPO that contians the fields PO and SupplierId. Records in the field PO include: T1, T6, T9, T12
I need a query that will return the max PO, in this case T12
I have tried:
But this returns T9
How do I get the query to return T12?
I need a query that will return the max PO, in this case T12
I have tried:
Code:
SELECT SupplierId, Max(PO) FROM tblPO;
But this returns T9
How do I get the query to return T12?