Advertisement
Guest User

Untitled

a guest
May 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. select customer_firstname|| ' ' ||customer_lastname
  2. from (select customer_firstname,customer_lastname from customer order by customer_firstname asc)
  3. where rownum < 2;
  4.  
  5. select customer_firstname|| ' ' ||customer_lastname
  6. from customer
  7. order by customer_firstname
  8. rownum < 2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement