|
-
 Originally Posted by danielkessler
If it's an improper questions, just say so
Relax, all questions are proper...
 Originally Posted by danielkessler
How do I sort the list of publications by the last name of the first author?
What tells you in your data structure which one is the first author?
 Originally Posted by danielkessler
and I suppose I'd also like to know why I can't use a comma, or how to use a comma, when I'm concatenating two fields
There is nothing wrong with it, try something like...
select a_fname || ',' a_lname
from publications_authors
where rownum < 2;
... just to test it.
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|