I need to create a query that pulls only the customer_no column (because the software restrictions are as such, and I can\'t code it externally). But I need to be able to so
This does not look like mysql.
Anyway... you could try an ordered sub-select IE
From (select * from T_CUSTOMER order by create_dt) a WITH (NOLOCK)
I hope this helps.