I have read all the posts regarding my issue in SO. But nothing fixed this.
Issue: When runs the mentioned query, below warning appears.
Current selection does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available.
Below is my query.
SELECT ST.stock_code, S.supplier_name, I.item_name, P.avail_qty, SL.unit_price, P.expire_date
FROM purchase_items P
INNER JOIN stock ST ON P.stock_id = ST.stock_id
INNER JOIN suppliers S ON ST.sup_id = S.sup_id
INNER JOIN items I ON P.item_id = I.item_id
INNER JOIN sales SL ON P.item_id = SL.item_id
WHERE (P.expire_date > (NOW() + INTERVAL 1 MONTH))