Jump to content

Mysql Limit


SchweppesAle

Recommended Posts

Anyone know why the following query is returning 40 entries instead of 20?

 

SELECT products.productid
		, products.keywords 
		, products.categories 
		, products.description 
		, products.summary 
		, products.brandid 
		, products.price 
		, products.detail_1 
		, brands.brandid as BID 
		, products.name 
		, brands.name AS BN 
	FROM products LEFT JOIN brands ON 
	(products.brandid = brands.brandid) 
		WHERE (lcase(products.name) like '%shirt%' 
		OR lcase(products.keywords) like '%shirt%' 
		OR lcase(products.description) like '%shirt%' 
		OR lcase(brands.name) like '%shirt%' 
		OR lcase(products.summary) like '%shirt%' 
		OR lcase(products.detail_1) like '%shirt%') AND products.status = '1' 
	ORDER BY length(products.name) asc LIMIT 20, 40

Link to comment
https://forums.phpfreaks.com/topic/189797-mysql-limit/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.