Hello! I have the following scenario:<br><br>In addition to other songs, our database has some 600 songs that belong to songbook called ”Hengellinen laulukirja”<br><br>Most of them are named plainly as: 31, 32, 100, 101 etc.. (Value is stored on table: ”songs” field: ”title”)<br><br>Some of them are named ”HL 001”, ”HL 461” etc. This is the format in which I want all of the songs from the book to be renamed to. (HL stands short for ”Hengellinen laulukirja”)<br><br>I also want to add songs to songbook with corresponding numbers.<br><br>So if I have song titled as ”25” I want to rename it to ”HL 025” and add it to songbook with number ”25”<br><br>(Further details of database: The database has related tables ”songs” and ”song_books”<br>songs table has fields called: ”title” for song name, ”song_book_id” and ”song_number” (which is the songbook number)<br>” song_books” has ”id” field with value ”2” on the desired songbook. (So the ”song_book_id” should be linked to ”id” with ”2”. )<br><br>Would it be possible to do the changes with code, so we wouldn’t need to manually rename/add the songs to book?<br><br>Blessings and thanks in advance!