MySQL:当前选择不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用

MySQL: Current selection does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available(MySQL:当前选择不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用)
本文介绍了MySQL:当前选择不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已阅读有关 SO 中有关我的问题的所有帖子.但没有什么能解决这个问题.

I have read all the posts regarding my issue in SO. But nothing fixed this.

问题:运行上述查询时,会出现以下警告.

Issue: When runs the mentioned query, below warning appears.

当前选择不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用.

以下是我的查询.

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))

purchase_items 表

推荐答案

我在使用 VIEW 时遇到了同样的问题,看起来 phpmyadmin 无法证明结果查询中存在表设计所独有的列.在您的情况下,它是stock_id,但由于有多个表连接并且其他行中不存在stock_id,因此无法确定编辑或删除时应影响哪一行.可以通过配置禁用此警告

I faced same problem when I use VIEW and looks like it's phpmyadmin just can't prove that there are columns in resulting query that unique by table design. In your case it's stock_id, but since there is multiple table join and stock_id is not present in other rows it is unable to deside what row shoild be affected on edit or delete. This warning could be disabled via config

$cfg['RowActionLinksWithoutUnique'] = true

https://docs.phpmyadmin.net/en/latest/config.html#cfg_RowActionLinksWithoutUnique

解决方案:这个表不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用

这篇关于MySQL:当前选择不包含唯一列.网格编辑、复选框、编辑、复制和删除功能不可用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)