相当于 MySQL 中 Oracle 的 RowID

Equivalent of Oracle’s RowID in MySQL(相当于 MySQL 中 Oracle 的 RowID)
本文介绍了相当于 MySQL 中 Oracle 的 RowID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

mysql中是否有相当于oracle的rowid?

is there an equivalent of oracle's rowid in mysql?

delete from my_table where rowid not in (select max(rowid) from my_table group by field1,field2)

我想为这个查询创建一个 mysql 等价物!!!

I want to make a mysql equivalent of this query!!!

我想要做的是:my_table 没有主键.. 我正在尝试删除重复的值并强加一个主键(field1、field2 的组合)..!!

What i'm trying to do is, : The my_table has no primary key.. i'm trying to delete the duplicate values and impose a primary key (composite of field1, field2)..!!

推荐答案

在 MySql 中你通常使用会话变量来实现功能:

In MySql you usually use session variables to achive the functionality:

SELECT @rowid:=@rowid+1 as rowid
FROM table1, (SELECT @rowid:=0) as init
ORDER BY sorter_field

但是您无法在子查询中对要从中删除的表进行排序.

But you can not make sorts on the table you are trying to delete from in subqueries.

UPD:也就是说,您需要创建一个临时表,将范围子查询插入临时表并通过加入临时表从原始表中删除(您将需要一些唯一的行标识符):

UPD: that is you will need to create a temp table, insert the ranging subquery to the temp table and delete from the original table by joining with the temporary table (you will need some unique row identifier):

CREATE TEMPORARY TABLE duplicates ...

INSERT INTO duplicates (rowid, field1, field2, some_row_uid)
SELECT
  @rowid:=IF(@f1=field1 AND @f2=field2, @rowid+1, 0) as rowid,
  @f1:=field1 as field1,
  @f2:=field2 as field2,
  some_row_uid
FROM testruns t, (SELECT @rowid:=NULL, @f1:=NULL, @f2:=NULL) as init
ORDER BY field1, field2 DESC;

DELETE FROM my_table USING my_table JOIN duplicates
  ON my_table.some_row_uid = duplicates.some_row_uid AND duplicates.rowid > 0

既然是一次操作,应该不会带来太多的开销.

Since that is one time operation, this should not bring too much overhead.

这篇关于相当于 MySQL 中 Oracle 的 RowID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)