SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  products.product_type, 
  products.parent_product_id, 
  descr1.full_description as full_description 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A', 'H') 
  AND cscart_categories.storefront_id IN (0, 1) 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND products.parent_product_id = 0 
  AND products.company_id IN('1', '2', '3', '4', '5', '6') 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  products.timestamp desc, 
  products.product_id ASC 
LIMIT 
  48, 12

Query time 0.00993

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "43.71"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY"
              ],
              "rows_examined_per_scan": 6,
              "rows_produced_per_join": 1,
              "filtered": "16.67",
              "cost_info": {
                "read_cost": "3.27",
                "eval_cost": "0.20",
                "prefix_cost": "3.47",
                "data_read_per_join": "7K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`companies`.`status` = 'A') and (`atulecarter_atul_demo1`.`companies`.`company_id` in ('1','2','3','4','5','6')))"
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "rows_examined_per_scan": 86,
              "rows_produced_per_join": 3,
              "filtered": "4.00",
              "using_join_buffer": "Block Nested Loop",
              "cost_info": {
                "read_cost": "20.01",
                "eval_cost": "0.69",
                "prefix_cost": "24.16",
                "data_read_per_join": "8K"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "(((`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`cscart_categories`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`cscart_categories`.`status` in ('A','H')) and (`atulecarter_atul_demo1`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.cscart_categories.category_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 10,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "3.63",
                "eval_cost": "2.06",
                "prefix_cost": "29.85",
                "data_read_per_join": "165"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status",
                "idx_parent_product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "10.32",
                "eval_cost": "0.10",
                "prefix_cost": "42.24",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "timestamp",
                "usergroup_ids",
                "parent_product_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`products`.`company_id` = `atulecarter_atul_demo1`.`companies`.`company_id`) and (`atulecarter_atul_demo1`.`products`.`parent_product_id` = 0) and ((`atulecarter_atul_demo1`.`products`.`usergroup_ids` = '') or find_in_set(0,`atulecarter_atul_demo1`.`products`.`usergroup_ids`) or find_in_set(1,`atulecarter_atul_demo1`.`products`.`usergroup_ids`)) and (`atulecarter_atul_demo1`.`products`.`status` = 'A') and (`atulecarter_atul_demo1`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.52",
                "eval_cost": "0.10",
                "prefix_cost": "42.86",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product",
                "full_description"
              ]
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "atulecarter_atul_demo1.products_categories.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 1,
              "filtered": "97.36",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.55",
                "eval_cost": "0.30",
                "prefix_cost": "43.71",
                "data_read_per_join": "36"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`atulecarter_atul_demo1`.`prices`.`lower_limit` = 1) and (`atulecarter_atul_demo1`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name product_type parent_product_id full_description
66 XRS 9970G CS-Cart P 0 <p>The XRS 9970G provides total protection and peace of mind with Super-Xtreme Range Superheterodyne Technology, detecting all 15 radar/laser bands with its super-fast lock-on detection circuitry. The unit provides extra detection range and the best possible advance warning to even the fastest of POP mode radar guns. . It comes with a GPS Locator and Lifetime updates to the AURA&trade; Database to alert you to verified Speed and Red Light Camera locations, dangerous intersections, and reported Speed Trap locations for entire United States and Canada. Other features include Cobra exclusive Touchscreen, full-color ExtremeBright DataGrafix Display, an 8-point electronic compass, Voice Alert, car battery voltage display/low car battery warning and much more.</p>
166 Nikon 1 J1 Two-Lens Wide Angle Kit Red CS-Cart P 0 <p>For your very mobile lifestyle comes a completely new imaging system with freedom to create and express as never before. Highly compact and portable, the Nikon 1 J1 goes everywhere you go. Moments from your amazing world are captured using a highly responsive autofocus and super fast shooting speed. In one touch you can work in Full HD (1080p) movie record mode. A camera so versatile you can even snap photos while recording movies. Unleash your creativity with Nikon 1&mdash;offering a balance of high performance, advanced features, portability and a newly designed interchangeable lens system. Infuse your world with photos from every moment and connect as never before.</p>
214 ASUS CP6130 CS-Cart P 0 <p>A glossy surface givess the CP6130 an air of elegance, while and an eye-catching power button inspired from the halo of a lunar eclipse seamlessly blends in to the front of the case.</p>
219 Series 3 15.6" Laptop CS-Cart P 0 <p>Don't be weighed down by wasted time, let your PC come alive when you need it. Your life happens on the go, you don't have time to wait for PC to shut down and power up. With Samsung's exclusive Fast Start technology, simply close the lid to enter a hybrid sleep mode. When you open the lid, you are up and running in less than 3 sec.</p>
221 Series 9 13.3" Laptop CS-Cart P 0 <p>You no longer have to shut down your Samsung computer, just close its lid and it goes into a special powerless sleep mode. When you open the lid your computer comes back to life in 3 seconds and you are exactly at the same place as when you shut the lid. Fast Start saves your data and system configurations to your hard drive and PC memory. So, when you power it back on it is just like you left it.</p>
223 Samsung Galaxy Tab 8.9 (Wi-Fi Only) - 32GB Metallic Gray CS-Cart P 0 <p>If you buy the wrong tablet, you&rsquo;re at the mercy of the manufacturer regarding how much you can customize or personalize your screens. But the beauty of Android is that you have much greater flexibility to arrange things however you want. You&rsquo;ll have multiple home screens to compose and design, plus live wallpapers to express your mood and personality. The Tab also offers you the freedom of TouchWiz&reg;, the intuitive user interface that allows you to quickly drag and drop your icons, widgets and Live Panels with only the touch of a finger. Now, reorganizing your tablet&rsquo;s menus and navigational options will be simple and straightforward.</p>
192 Black and White America (CD Pack) CS-Cart P 0 <p><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">Tracklisting:</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">1. Black And White America</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">2. Come On Get It</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">3. In The Black</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">4. Liquid Jesus</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">5. Rock Star City Life</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">6. Boongie Drop</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">7. Stand</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">8. Superlove</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">9. Everything</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">10. I Can't Be Without You</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">11. Looking Back On Love</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">12. Life Ain't Ever Been Better Than It Is Now</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">13. The Faith Of A Child</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">14. Sunflower</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">15. Dream</span><br style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #cac5c5; padding: 0px; margin: 0px;" /><span style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 16px; text-align: left; background-color: #ffffff;">16. Push</span></p>
194 U218 Singles (U2TCD020) CS-Cart P 0 <p><span style="color: #000000; font-family: Arial, Geneva, 'sans serif'; text-align: left; background-color: #ffffff;">U218 Singles is the first single-disc collection - including 16 of their best-known songs. Also included are two brand-new tracks recorded with producer Rick Rubin at Abbey Road Studios in London: "The Saints Are Coming" (with Green Day) and "Window in the Skies."</span></p>
195 Crossroads Guitar Festival 2010 (2DVD) CS-Cart P 0 <p> <p>2DVD edition of the 2010 Crossroads Guitar Festival. Featuring: Eric Clapton, Jeff Beck,Sheryl Crow,Vince Gill, Buddy Guy, B.B. King,John Mayer, Bill Murray,Steve Winwood,Ronnie Wood, ZZ Top,and more PLUS behind-the-scenes footage and interviews.</p> <p>&nbsp;</p> <p>DVD 1</p> <p>&nbsp;</p> <p>01 Promise Land - By Sonny Landreth with Eric Clapton</p> <p>02 Z. Rider - By Sonny Landreth with Eric Clapton</p> <p>03 Traveling Shoes - By Robert Randolph &amp; The Family Band</p> <p>04 Going Down - By Pino Daniele, Joe Bonamassa, Robert Randolph &amp; The Family Band</p> <p>05 Killing Floor - By Robert Cray with Jimmie Vaughan &amp; Hubert Sumlin</p> <p>06 Six Strings Down - By Jimmie Vaughan with Robert Cray &amp; Hubert Sumlin</p> <p>07 Waiting For The Bus - By ZZ Top</p> <p>08 Jesus Just Left Chicago - By ZZ Top</p> <p>09 Gypsy Blood - By Doyle Bramhall II</p> <p>10 In My Time Of Dying (Jesus Make Up My Dying Bed) - By Doyle Bramhall II</p> <p>11 Bright Lights - By Gary Clark Jr.</p> <p>12 Long Road Home - By Sheryl Crow with Derek Trucks, Susan Tedeschi, Doyle Bramhall II &amp; Gary Clark Jr.</p> <p>13 Our Love Is Fading - By Sheryl Crow with Eric Clapton, Doyle Bramhall II &amp; Gary Clark Jr.</p> <p>14 Blackwaterside - By Bert Jansch</p> <p>15 Mississippi Blues - By Stefan Grossman &amp; Keb' Mo'</p> <p>16 Roll And Tumble Blues - By Stefan Grossman</p> <p>17 One More Last Chance - By Vince Gill with Keb' Mo', James Burton, Earl Klugh &amp; Albert Lee</p> <p>18 Mystery Train - By Vince Gill with James Burton, Albert Lee, Keb' Mo' &amp; Earl Klugh</p> <p>19 Lay Down Sally - By Vince Gill with Sheryl Crow, Keb' Mo', Albert Lee, James Burton &amp; Earl Klugh</p> <p>20 Angelina - By Earl Klugh</p> <p>21 Vonetta - By Earl Klugh</p> <p>22 Who Did You Think I Was - By John Mayer Trio</p> <p>23 Ain't No Sunshine - By John Mayer Trio</p> <p>&nbsp;</p> <p>DVD 2</p> <p>&nbsp;</p> <p>01 Midnight In Harlem - By Derek Trucks &amp; Susan Tedeschi Band</p> <p>02 Coming Home - By Derek Trucks &amp; Susan Tedeschi Band with Warren Haynes</p> <p>03 Soulshine - By Warren Haynes</p> <p>04 Don't Keep Me Wondering - By David Hidalgo &amp; Cesar Rosas with Derek Trucks</p> <p>05 Space Captain - By Derek Trucks &amp; Susan Tedeschi Band with Warren Haynes, David Hidalgo, Cesar Rosas &amp; Chris Stainton</p> <p>06 Five Long Years - By Buddy Guy with Jonny Lang &amp; Ronnie Wood</p> <p>07 Miss You - By Buddy Guy with Jonny Lang &amp; Ronnie Wood</p> <p>08 Hammerhead - By Jeff Beck</p> <p>09 Nessun Dorma - By Jeff Beck</p> <p>10 Crossroads</p> <p>11 Hands Of The Saints - By Citizen Cope &amp; Eric Clapton</p> <p>12 I Shot The Sheriff</p> <p>13 Shake Your Money Maker - By Eric Clapton &amp; Jeff Beck</p> <p>14 Had To Cry Today - By Steve Winwood &amp; Eric Clapton</p> <p>15 Voodoo Chile - By Eric Clapton &amp; Steve Winwood</p> <p>16 Dear Mr. Fantasy - By Steve Winwood &amp; Eric Clapton</p> <p>17 The Thrill Is Gone - By B.B. King &amp; Ensemble</p> <div></div> </p>
196 Feeding the Monkies At Ma Maison (Zappa) CS-Cart P 0 <p>&nbsp;</p> <p>Official Release #90&nbsp;</p> <p>Released: 22 September 2011</p> <p>Label: Zappa Records&nbsp;</p> <p>Catalog Number: ZR 20012</p> <p>Produced/Composed/Arranged by Frank Zappa</p> <p>CD Compilation by Gail Zappa &amp; Joe Travers</p> <p>Tracklisting:</p> <p>&nbsp;</p> <p>01. Feeding The Monkies at Ma Maison 20:12</p> <p>02. Buffalo Voice 11:34</p> <p>03. Secular Humaism 6:37</p> <p>04. Worms From Hell 5:31</p> <p>05. Samba Funk 11:29</p> <p>&nbsp;</p>
197 Guitar Man Album Artwork CS-Cart P 0 <p> <p>Guitar Man CD</p> <p>George Benson - Guitar Man</p> <p>AUDIO TRACKS:</p> <p>- Tenderly</p> <p>- I Want To Hold Your Hand</p> <p>- My Cherie Amour</p> <p>- Naima</p> <p>- Tequila</p> <p>- Don't Know Why</p> <p>- Lady In My Life</p> <p>- My One And Only Love</p> <p>- Paper Moon</p> <p>- Danny Boy</p> <p>- Since I Fell For You</p> <p>- Fingerlero</p> <p>FILE:</p> <p>- George Benson - Guitar Man Digital Album Booklet</p> <p>George Benson - Guitar Man (Exclusive Bonus Tracks)</p> <p>AUDIO TRACKS:</p> <p>- Somewhere</p> <p>- Maria</p> <p>MERCHANDISE:</p> <p>- Guitar Man CD</p> <p>Type: CD</p> </p>
198 B.B. King One Kind Favor CD Grammy Award Winning CD Manufacturer: Geffen Records Sku: BBK-11ONEKINDFAVORCD Reviewed 2 times CS-Cart P 0 <p> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <h3 style="font-size: 11pt; color: #666666; margin-top: 2px; margin-right: 0px; margin-bottom: 1px; margin-left: 0px; font-family: 'Gill Sans MT Pro Medium', tahoma, arial, sans-serif;">GRAMMY AWARD WINNING CD: BEST TRADITIONAL BLUES ALBUM</h3> </div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Product Details&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <ul class="wiki_list"> <li class="wiki_listitem">Audio CD (August 26, 2008)</li> <li class="wiki_listitem">Original Release Date: August 26, 2008</li> <li class="wiki_listitem">Number of Discs: 1</li> <li class="wiki_listitem">Label: Geffen Records</li> </ul> </div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">Listen to samples&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;">The full track listing for One Kind Favor (original artist in parenthesis):&nbsp;</div> <div class="wiki_section" style="margin-bottom: 15px; line-height: 18px; color: #3b3b3b; font-family: 'Gill Sans MT', tahoma, arial, sans-serif; font-size: 12px; text-align: left; background-color: #ffffff;"> <ul class="wiki_list"> <li class="wiki_listitem">1.See That My Grave Is Kept Clean (Lemon Jefferson)</li> <li class="wiki_listitem">2.I Get So Weary (T-Bone Walker)</li> <li class="wiki_listitem">3.Get These Blues Off Me (Lee Vida Walker)</li> <li class="wiki_listitem">4.How Many More Years (Chester Burnett)</li> <li class="wiki_listitem">5.Waiting For Your Call (Oscar Lollie)</li> <li class="wiki_listitem">6.My Love Is Down (Lonnie Johnson)</li> <li class="wiki_listitem">7.The World Is Gone Wrong (Walter Vinson, also known as Walter Jacobs, and Lonnie Chatmon, core members of the Mississippi Sheiks)</li> <li class="wiki_listitem">8.Blues Before Sunrise (John Lee Hooker)</li> <li class="wiki_listitem">9.Midnight Blues (John Willie "Shifty" Henry)</li> <li class="wiki_listitem">10.Backwater Blues (Big Bill Broonzy)</li> <li class="wiki_listitem">11.Sitting On Top Of The World (Walter Vinson and Lonnie Chatmon)</li> <li class="wiki_listitem">12.Tomorrow Night (Lonnie Johnson)</li> </ul> </div> </p>