Combine songs of 2 albums into one

I have songs from 1 album separated into 2 albums in itunes. How can I combine these into one? Thanks.

Hi,
917372 wrote:
Thanks for the quick response - that works great thanks.
That "dual" table is oracle specific though right?Right; don't expect a dual table in a non-Oracle database.
I know this an oracle forum, but just out of curiosity would there be a quick non-oracle way to do this as well?Other databases may have their own specific ways of doing something similar. In SQL Server (I believe) you can simply omit the FROM clause.
If all else fails, create your own 1-row table. You can call it dual, if you want to.
CREATE TABLE  dual
(   dummy   VARCHAR2 (1)
INSERT INTO dual (dummy) VALUES ('X');
COMMIT; 
FULL OUTER JOIN doesn't use dual:
SELECT     *
FROM           (SELECT col1 FROM tblA WHERE col1 = 'val1') a
FULL OUTER JOIN  (SELECT col2 FROM tblB WHERE col2 = 'val2') b  ON  1 = 1
;Edited by: Frank Kulash on Feb 27, 2012 8:34 PM
Added FULL OUTER JOIN

Similar Messages

  • Combining all classical albums into one folder

    can i combine my 11 classical albums into one folder or category to remove clutter in my music library?

    mark4440,
    As a general rule, once music is in your iTunes library, it is best not to rename or move any of their files or folders. iTunes loses track of the files when you do that.
    As noted from time to time on this forum, the basic iTunes structure of album/artist/song does not really suit classical music that well. Many folks like to edit the artist field to include the composer so that they can see the composer on the iPod.
    Does your library include non-classical as well as classical music? If so, make sure you have filled out the "genre" for each of your classical pieces. To do that, right-click on the song, "Get Info," select the genre field, then "OK.". Also make sure that Genre is visible in your iTunes music view (View > Options if you need to adjust). You can also create a smart playlist, keying on genre, that includes only your classical music.
    Ed

  • How do i put multiple albums into one huge album collection?

    How do i put multiple albums into one huge album collection?
    Some examples include: Linkin Park - Studio Collection, Michael Jackson - The Indisposable Collection

    Hi skullkrunch3r,
    Thanks for visiting Apple Support Communities.
    If you "Get Info" on the tracks that are part of your collection, you can use the Compilation option in iTunes.
    In iTunes 8 and later, you find the option to mark multiple items as "Part of a compilation" in the Options tab of the Multiple Item Information window.
    See this article for more information on marking your albums as part of a compilation:
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Best Regards,
    Jeremy

  • Can you sort multiple albums into one single album....?

    So my situation is like this...
    I have multiple albums from one specific Band (in this case its music from Shin Megami Persona.) I have all 8 albums sorted separately in Itunes. When it is sync'd to my Iphone it will show all of them in order which is typical. What I am curious about is if I can put the Albums into one Album name and when I click it, it will then show the 8 albums. Basically, this is for the sake of not having a lengthy album list on the iphone.
    If my question/explanation was unclear, maybe this might help.
    My current Album list looks like this:
    Albums- P
    Paramore
    Persona Reincarnation
    Persona 3 OST
    Persona 4 OST
    Persona 3 FES OST
    Persona 3 Portable OST
    Persona Music Live 2008
    Persona Music Live 2009
    Persona Music Live Band
    Pink Floyd Greatest Hits
    ect... ect...
    What I would like is for it to be like this:
    Album-P
    Paramore
    Persona Sountracks <------ click on this
    Pinkfloyd Greatest Hits
    ect...ect...
    Clicking leads to below
    Persona Soundtracks:
    Persona Reincarnation
    Persona 3 OST
    Persona 4 OST
    Persona 3 FES OST
    Persona 3 Portable OST
    Persona Music Live 2008
    Persona Music Live 2009
    Persona Music Live Band
    I've been able group them all together by changing them all to the same album name but it just leads to a extremely lengthy list of songs. So if there is anyway to sort by the way I explained above, I am open for suggestions. Thanks!!!1!1!1!1

    Thanks. That was very easy and works perfectly. Do you know if I can get my 08 edited footage back into 06 for some additional editing without exporting as a Quicktime movie that I can't edit? I want to add audio tracks that I can edit in synch with my video footage like I can in 06. Thanks!

  • HT204053 how do I combine all my apple ids into one apple id

    Is there a way to combine all my apple ids into one new apple id so all my previous purchases are on one id?
    Thanks

    Unfortunately, you can't.  IDs can't be merged.  You'll just have to pick the ID whose itunes account has the most purchased items.

  • How do I combine two user iPhoto files into one...keeps blocking the pics between users

    How do I combine two user iPhoto files into one...keeps blocking the pics between users on the same Mac?

    Put the library on an external hard drive that is formatted as shown in this screenshot:
    OT

  • How do I combine two or more pictures into one?

    How do I combine two or more pictures into one?

    I found out how to do what I wanted and I'm giving my steps in hopes that it might help someone else.  I wanted to put several photos from a file onto a new blank image.  This is what I did.
    1.  Create a blank page.    File/New/ Blank File.   Put in the size.  I used 8x10.
    2.  Bring the photo  you want to use into Elements as you always do. It will list along the top next to the blank sheet.
    3.  Choose SELECT (top of screen)/ Select All.
    4.  Choose Edit/Copy   or Command "C"
    5.  Click on the Blank File.   Chose Edit/Paste  or Command "V"
    6.  Click on Image/ Transform or Command "T".  There should be a dotted line around your pasted image.  You can then move and adjust the image to how you want it.  When finished, press the check-mark on lower right of photo.
    7.   Repeat this with all the photos you want on the new blank file.
    8.  You will see on lower right of Elements,  the background layer and as many layers as you have photos.  These layers need to be permanently placed on the background layer. Go to Layers and press Merge Visible.  This will merge all layers to the background.
    9.  Save as and you are done.

  • How to combine a few PDF files into one with Adobe reader?

    how to combine a few PDF files into one with Adobe reader?

    Hi aho,
    You would need either Acrobat (link to free 30 day trial) or our PDF Pack subscription service to perform that task.
    What can I do with Reader?
    Let me know if you have further questions!
    Regards, Stacy

  • Combining 2 grahics or more into one

    Using AS3 code, is it possible to combine 2 graphics or more into one?
    Example : combining a rectangle and a triangle to make a nice arrow?

    Do you know anything about AS3 drawing API - I guess this is what you need to use:
    This is an example of how one can draw rectangle:
    var sp:Sprite = new Sprite();
    sp.graphics.beginFill(0xff0000);
    sp.graphics.drawRect(0, 0, 100,200);
    sp.graphics.endFill();
    addChild(sp);
    Read:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/Graphics.html
    And this:
    http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Liv eDocs_Parts&file=00000176.html

  • Combine mac, me, iCloud accounts into one

    How can I combine @mac, @me, @icloud accouts into one?

    ggsinokc wrote:
    They all have the same before@.
    Then they are already all the same account.
    However I get duplicate emails.
    Obviously you shouldn't. If you send yourself a message to [email protected], do you get more than one message delivered? What address shows in the 'To' field? (if just your name shows, click and hold on it to show the address).

  • How do I Merge 2 Albums into one and make CD 1&2

    ive tried everything followed other forums that had the same question they just wont merge. if i could insert a video on here to show but it wont let me the icon isnt shaded in and when i press it it wont respond.
    ive tried everything that was posted on this forum
    https://discussions.apple.com/thread/5046421

    you kind of solved my question but i didnt really understand it because of the wording but heres a better way of explaining that i found on a different forum
    i added an x to both albums artist and that didnt work
    then i added an x to both albums artist and album and it grouped
    Sometimes iTunes may split an album into one or more partial albums. This split may happen if some tracks from the album have different values for Artist, Album Artist (ignored on iPod), Album, No. of Discs. or Part of a Compilation. Tiny differences such as trailing spaces, accented characters, or variants of symbols can be quite hard to spot. Normally overtyping the desired value for each shared field will complete the grouping of the album into one entity. Occasionally, however, this method seems to fail. In this instance I've found that you can force every field to update properly by adding some extra text - e.g. a trailing X, which once applied seems to complete the joining of the tracks into one album. Once this has happened the extra data can be removed and the album should remain properly grouped.
    https://discussions.apple.com/thread/1670662

  • Stop iTunes from combining multiple albums into one? Or easily reordering tracks once combined?

    I'm trying to put a 4-cd compilation of b-sides into iTunes, but iTunes is combining them into ONE huge album. This is only a problem because there are now four Track 1s, four Track 2s, etc. What is the easiest way to fix this? I do NOT want to go through track by track changing them to the correct numerical order. :/ AN help?

    Hi Mhwal.  I think this may help you.
    Here's a test for you to try.
    Make sure your iTunes library is updated with your edited album names; 
    Find a song on your iPhone where the album name is incorrect; 
    Delete the song from your iPhone; 
    On your iPhone go to "Settings>iTunes & App Store" and tap your Apple ID (highlighted in blue). 
    Tap "Sign Out"; 
    Go back to your iTunes library and select the song/album that you want back on your iPhone; 
    The iPhone should now show your edited album tag; 
    Once your done you can sign back to "Settings>iTunes & App Store" and sign back in.  Your edits will hold.
    In addition, this also works with artist pictures.  I did not like the stock images iTunes associated with my artists - I wanted album art instead.  After you sign out of your Apple ID, when you move a song/album from your iTunes library to your iPhone the FIRST album you move over will be associated with that artist.
    For example, I have seven AC/DC albums but I want the cover of "Back in Black" to be associated with AC/DC on my iPhone's artist listing.  After I've signed out of my Apple ID, I transfer "Back in Black" to my iPhone and then the other six albums in any order.  "Back in Black" will be the album picture associated with AC/DC on the artist page.
    Just remember, after your changes you can sign back into iTunes through "Settings>iTunes & App Store" and your changes to edited albums and artist cover art should hold.
    I hope this helps!

  • How do I combine two or more CDs into one album?

    How do I combine multiple CDs, like box sets, into one album in iTunes?

    See also Grouping tracks into albums.
    tt2

  • How to combine two albums into one

    I imported into iTunes two Shostakovich compositions so that I could burn a CD-R that contained these two works. The CD burning went fine, but iTunes insists on separating the two compositions into two albums in the display of all albums. I have made sure that the album titles and the artists displayed under the album icons are identical, but still the two will not meld into one. Will someone help me with this? I am using iTunes 9.2.1(4).

      On the "Get Information" windows (reached with right clicks) of the two separated albums, one album was marked as "no" on the "part of a compilation" option and the other was marked "yes". I changed the "no" to a "yes" and they merged. I'm not sure if I got this from the site you gave me or if I just stumbled on to it. Either way, I thank you for your kind responses.

  • Combining double / 2-disc sets into one complete album .

    Just wondering if iTunes had some simple way of doing it for me , automatically . I know how to do it the long , time consuming way in the root folders , but it takes forever . I've got alot of these 2 disc , double-live , & box-sets that I would love to condense into one album , saving the need for alot of playlist creations . Anyone found a way to do it ?

    Just wondering if iTunes had some simple way of doing it for me , automatically . I know how to do it the long , time consuming way in the root folders , but it takes forever . I've got alot of these 2 disc , double-live , & box-sets that I would love to condense into one album , saving the need for alot of playlist creations . Anyone found a way to do it ?

Maybe you are looking for