如何在 MySQL 中模拟数组变量?

How can I simulate an array variable in MySQL?(如何在 MySQL 中模拟数组变量?)
本文介绍了如何在 MySQL 中模拟数组变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

似乎 MySQL 没有数组变量.我应该用什么代替?

It appears that MySQL doesn't have array variables. What should I use instead?

似乎建议了两种替代方案:集合类型标量临时表.我链接到的问题表明前者.但是使用这些而不是数组变量是一种好习惯吗?或者,如果我使用集合,那么与 foreach 等效的基于集合的习语是什么?

There seem to be two alternatives suggested: A set-type scalar and temporary tables. The question I linked to suggests the former. But is it good practice to use these instead of array variables? Alternatively, if I go with sets, what would be the set-based idiom equivalent to foreach?

推荐答案

嗯,我一直在使用临时表而不是数组变量.不是最好的解决方案,但它有效.

Well, I've been using temporary tables instead of array variables. Not the greatest solution, but it works.

请注意,您不需要正式定义它们的字段,只需使用 SELECT 创建它们即可:

Note that you don't need to formally define their fields, just create them using a SELECT:

DROP TEMPORARY TABLE IF EXISTS my_temp_table;
CREATE TEMPORARY TABLE my_temp_table
    SELECT first_name FROM people WHERE last_name = 'Smith';

(另请参见不使用创建表从选择语句创建临时表.)

这篇关于如何在 MySQL 中模拟数组变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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