- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有“指令”字段(mediumtext)的数据库,其中每个条目都包含有序列表形式的指令段落。目前,在查看时,每个列表项都会通过使用 PHP nl2br
函数调用来显示在新行中。
示例条目:
- Place the flour, baking powder and a pinch of salt in a bowl and combine. Set aside. 2. Place the butter and sugar in a mixer bowl and cream at high speed until light and creamy, using the paddle attachment. 3. Reduce the mixer to a moderate speed and gradually add the egg until well emulsified. 4. Add the flour mixture and mix until it comes together to form a dough. Remove the dough from the mixing bowl and place between 2 sheets of baking parchment. 5. Roll the dough to a thickness of 5mm. 6. Place in the freezer while preheating the oven to 170°C/340°F. 7. Peel off the parchment and bake the dough until golden. 8. Allow to cool, then store in a sealed container until needed.
正如您所看到的,文本中也有数字。
我想将这个字段拆分到一个单独的表中,其中每个单独的指令列表项都有自己的行和 ID,将其链接到当前项。
有没有办法可以使用 MySQL 拆分现有字段?可以用“Number.”作为分隔符。
最佳答案
您可以使用存储过程来完成此操作。这个假设步骤从 1 开始,按顺序编号,并且所有步骤看起来都像步骤编号,后跟句点、空格,然后是步骤文本(这就是示例数据的样子)。它应该相当容易修改以使用稍微不同的格式。我已使该过程生成步骤的结果集,但是您也可以将 SELECT
更改为 INSERT
以将步骤复制到新表中。
DELIMITER //
DROP PROCEDURE IF EXISTS split_recipe //
CREATE PROCEDURE split_recipe(IN recipe VARCHAR(2048))
BEGIN
DECLARE step INT DEFAULT 1;
DECLARE next_step INT DEFAULT step+1;
DECLARE this_step VARCHAR(256);
WHILE recipe RLIKE CONCAT('^[[:blank:]]*', step, '[[.period.]]') DO
-- is there a next step?
IF recipe RLIKE CONCAT('^[[:blank:]]*', step, '[[.period.]] .*', next_step, '[[.period.]]') THEN
SET this_step = SUBSTRING_INDEX(SUBSTRING_INDEX(recipe, CONCAT(next_step, '. '), 1), CONCAT(step, '. '), -1);
ELSE
SET this_step = SUBSTRING_INDEX(recipe, CONCAT(step, '. '), -1);
END IF;
-- output this step
SELECT step, this_step;
-- remove this step from the recipe
SET recipe = SUBSTRING_INDEX(recipe, CONCAT(step, '. ', this_step), -1);
SET step = next_step;
SET next_step = step + 1;
END WHILE;
END //
使用您的示例数据:
CALL split_recipe('1. Place the flour, baking powder and a pinch of salt in a bowl and combine. Set aside. 2. Place the butter and sugar in a mixer bowl and cream at high speed until light and creamy, using the paddle attachment. 3. Reduce the mixer to a moderate speed and gradually add the egg until well emulsified. 4. Add the flour mixture and mix until it comes together to form a dough. Remove the dough from the mixing bowl and place between 2 sheets of baking parchment. 5. Roll the dough to a thickness of 5mm. 6. Place in the freezer while preheating the oven to 170°C/340°F. 7. Peel off the parchment and bake the dough until golden. 8. Allow to cool, then store in a sealed container until needed.')
输出:
step this_step
1 Place the flour, baking powder and a pinch of salt in a bowl and combine. Set aside.
2 Place the butter and sugar in a mixer bowl and cream at high speed until light and creamy, using the paddle attachment.
3 Reduce the mixer to a moderate speed and gradually add the egg until well emulsified.
4 Add the flour mixture and mix until it comes together to form a dough. Remove the dough from the mixing bowl and place between 2 sheets of baking parchment.
5 Roll the dough to a thickness of 5mm.
6 Place in the freezer while preheating the oven to 170°C/340°F.
7 Peel off the parchment and bake the dough until golden.
8 Allow to cool, then store in a sealed container until needed.
请注意,此过程会生成多个单行结果集(每个步骤一个 - 我将它们组合起来以便于上面的阅读)。如果只需要一个结果集,则需要修改过程以将步骤存储到临时表中,然后最后从临时表中获取所有数据。或者,可以在应用程序中使用如下代码(针对 PHP/PDO/MySQL):
$result = $link->query("call split_recipe('1. Place the flour...')");
do {
if ($result->columnCount()) {
$row = $result->fetch();
print_r($row);
}
} while ($result->nextRowset());
这是该过程的修改版本,它将把表 recipes (RecipeID INT, instructions VARCHAR(2048))
中的菜谱拆分为一个新表 new_recipes (RecipeID INT, step_num INT) ,指令VARCHAR(256))
。
DELIMITER //
DROP PROCEDURE IF EXISTS split_recipes //
CREATE PROCEDURE split_recipes()
BEGIN
DECLARE rid INT;
DECLARE recipe VARCHAR(2048);
DECLARE step INT;
DECLARE next_step INT;
DECLARE this_step VARCHAR(256);
DECLARE finished INT DEFAULT 0;
DECLARE recipe_cursor CURSOR FOR SELECT RecipeID, Instructions FROM recipes;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET finished = 1;
DROP TABLE IF EXISTS new_recipes;
CREATE TABLE new_recipes (RecipeID INT, step_num INT, Instruction VARCHAR(256));
OPEN recipe_cursor;
recipe_loop: LOOP
FETCH recipe_cursor INTO rid, recipe;
IF finished = 1 THEN
LEAVE recipe_loop;
END IF;
SET step = 1;
SET next_step = 2;
WHILE recipe RLIKE CONCAT('^[[:blank:]]*', step, '[[.period.]]') DO
-- is there a next step?
IF recipe RLIKE CONCAT('^[[:blank:]]*', step, '[[.period.]] .*', next_step, '[[.period.]]') THEN
SET this_step = SUBSTRING_INDEX(SUBSTRING_INDEX(recipe, CONCAT(next_step, '. '), 1), CONCAT(step, '. '), -1);
ELSE
SET this_step = SUBSTRING_INDEX(recipe, CONCAT(step, '. '), -1);
END IF;
-- insert this step into the new table
INSERT INTO new_recipes VALUES (rid, step, this_step);
-- remove this step from the recipe
SET recipe = SUBSTRING_INDEX(recipe, CONCAT(step, '. ', this_step), -1);
SET step = next_step;
SET next_step = step + 1;
END WHILE;
END LOOP;
END //
关于Mysql 将有序列表拆分为多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50457219/
就类似于这个问题:mongodb query multiple pairs using $in 我想用 (first, last) >= ('John', 'Smith') 找到前 10 个全名。使用
如何保留向 NSDictionary 添加对象的方式? 我意识到 NSDictionary 中的值没有特定的顺序,但就我而言,我需要保留使用 setValue:forKey: 添加的顺序,例如一个数组
看看上证所运营商 CMPORDPS - ordered compare packed singles CMPUNORDPS - unordered compare packed singles 有序和
我使用 PowerMock 来模拟静态方法。我需要验证静态和非静态方法调用的顺序。可以使用 PowerMock 来做吗? UPD 我使用 powermockito 扩展来模拟静态方法,因此使用 pow
例如,如何合并两个已排序的整数流?我认为这是非常基本的,但只是发现它根本不是微不足道的。下面的不是尾递归的,当流很大时它会堆栈溢出。 def merge(as: Stream[Int], bs: St
我试图在二叉树中查找/打印每个节点的中序后继,但编译器给我的结果是段错误。 这是结构:- struct node { int x; struct node *left; str
我有一个查询看起来像 SELECT a, b, c, d FROM tab ORDER BY a ASC, b ASC 我的结果集看起来像 +-----------------
首先,我试过搜索这个主题但一无所获(似乎找不到合适的关键词),所以如果这是重复的,请告知。 我一直在尝试从我的数据库中获取一些 time_stamp 并将它们按时间间隔排序。例如,我运行一个查询,如
这个问题在这里已经有了答案: How do I get the index of an iterator of an std::vector? (9 个回答) 关闭 6 年前。 我已经订购了 QVe
我有以下实体,如果我尝试通过 removeTask 方法从 TaskList 中删除 Task,则会出现异常。 @Entity public class TaskList extends Generi
所以,我对 C 编程还是很陌生。 有3个长度相同的字符串。 str1="abc", str2="def", str3="ghi". 新字符串中的输出将类似于“adgbehcfi”。 #include
我的查询有一个问题,它花费的时间太长(仅仅这个简单的查询就超过了两秒)。 乍一看,这似乎是一个索引问题,所有连接的字段都已编入索引,但我找不到其他我可能需要编入索引以加快速度的内容。一旦我将我需要的字
我正在寻找一个 Map 实现,它按照键值对的添加顺序迭代它们。例如 Map orderedMap = // instantiation omitted for obvious reasons :) o
我正在寻找具有以下功能的数据库系统: 分层(多维)键 每个维度的键排序 因此,如果我的 key 类似于 App > User > Item,我可以运行如下查询:“该用户的下一项是什么?”或者“这个应用
以下类使用 CRTP 尝试将类型添加到具有 Schwarz 计数器以确保初始化顺序的 std::vector。根据 3.6.2/2 成员 h_ 具有无序初始化。我将如何更改它以确保它已订购初始化?我希
我正在实现一个玩具调度程序,它读取进程规范(例如到达时间、总运行时间)的输入文件,然后根据随机 io/cpu 突发调度进程。 文件格式 Arrival time, total CPU time, CP
我目前正在使用 python 2.7 requests 库,并且不支持有序 header 。我可以为 post 和 get 放置有序数据(如有序字典),但根本不支持标题。甚至在 python 3 中也
我正在使用来自 google guava 的 ConcurrentHashMap(通过 MapMaker),但该实现未排序。google guava 中有 ConcurrentSkipListMap,
我有一个旧应用程序,其中使用 ConcurrentHashMap。现在我们知道并发HasMap 是无序的,但是需要读取最初插入的对象。我已经在生产中使用了一段时间的代码,因此我正在寻找快速替代方案来替
最近我开始使用 .NET Core 2.1 开发一个新项目,我决定使用 SOLID 原则并创建一个漂亮的项目结构。 这是一个 Web API 项目。一切正常我使用了很多依赖注入(inject),大部分
我是一名优秀的程序员,十分优秀!