gpt4 book ai didi

mysql - 在 MySql 5.7 中使用动态列引用从另一个表更新表

转载 作者:行者123 更新时间:2023-11-29 15:33:04 25 4
gpt4 key购买 nike

我有两个表 NEW_TBL 和 CURRENT_TBL。

需要更新 CURRENT_TBL 中的值,使其等于 NEW_TBL。两个表都有一个名为 tableId 的 PK,但 NEW_TBL 中的列并不总是与 CURRENT_TBL 匹配。我已经拥有使架构相同所需的内容,但我需要一种基于动态列引用更新 CURRENT_TBL 值的方法。

这是一个人为的示例,说明我如何在 javascript 中实现此目的。

起始表:

currentTable = [
['tableId','col2','col3','col4'],
['1','purple','blue','pink'],
['2','purple','red','orange'],
['3','green','yellow','purple']
];


newTable = [
['tableId','col2','col3','col4'],
['1','','blue','pink'],
['2','magenta','blue','pink'],
['4','grey','black','white']
];

功能:

function updateCurrentTable() {
var currentHeader = currentTable[0];
var newHeader = newTable[0];
var currentValues = currentTable.slice(1);
var newValues = newTable.slice(1);

var newIdList = newValues.map(function(val){ // Get list of newTable ids
return val[0];
})

var currentIdList = currentValues.map(function(val){ // Get list of newTable ids
return val[0];
})

for (var newColumn = 0; newColumn<newHeader.length; newColumn++) { // Loop through new table columns
var columnName = newHeader[newColumn];
var newIdColumn = newHeader.indexOf('tableId');
var currentColumnIndex = currentHeader.indexOf(columnName);
var currentIdIndex = currentHeader.indexOf('tableId');

if (columnName !== 'tableId') { // The tableId column is skipped because the id will never be altered

for (var newRow = 0; newRow<newValues.length; newRow++) { // Loop through new table rows
var newId = newValues[newRow][newIdColumn];
var newValue = newValues[newRow][newColumn];

if (currentIdList.indexOf(newId) < 0) { // If tableId exists in newTable but not in currentTable, add the row to currentTable
currentValues.push(newValues[newRow]);
currentIdList.push(newId); // Update the id list
}

for (var curRow =0; curRow < currentValues.length; curRow++) { // Loop through current table rows
var currentId = currentValues[curRow][currentIdIndex];

if (currentColumnIndex !== currentIdIndex) { // The tableId column is skipped because the id will never be altered

if (newIdList.indexOf(currentId) < 0) { // If tableId exists in currentTable but not newTable, remove the row from currentTable
currentValues.splice(curRow,1);
} else if (newId === currentId) { // If the tableIds match, update the value in the current column
currentValues[curRow][currentColumnIndex] = newValue;
}
}
}
}
}
}

Logger.log(currentValues)
}

结果:

currentTable = [
['tableId','col2','col3','col4'],
['1','','blue','pink'],
['2','magenta','blue','pink'],
['4','grey','black','white']
];

有没有办法在 SQL 中完成上述任务?

谢谢!

最佳答案

我了解您希望匹配 tableId 列上的表格,并使用 中的相应值更新 current_tbl 中的 colHeader new_tbl

为此,您可以利用 MySQL update ... join ... set 语法:

update current_tbl c
inner join new_tbl n on c.tableId = n.tableId
set c.colHeader = n.colHeader

关于mysql - 在 MySql 5.7 中使用动态列引用从另一个表更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58532291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com