I have these 4 tables as follow and I want to join them
Table 1 : tb_category (cat_id, cat_name)
Table 2 : tb_singer (cat_id, singer_id, singer_name)
Table 3 : tb_album (singer_id, album_id, album_name, album_release)
Table 4 : tb_lyric (singer_id, album_id, lyric_id, lyric_title, lyric_content)
I want to show the query based on the latest entry then the visitor can sort them by category, singer, album and lyric title.
can anybody help?