我有三张桌子
products->(id, number, public, custom, etc)
references->(id,ref,product_id,price_id)
product_descriptions->(id,product_id,description,summary)
我需要使用表 product_descriptions 中的部分字符串描述从表引用中填充列 ref 的值,这是一个 int ,这可能吗?
如何从表的一列中选择字符串的特定部分并转换为 int 并存储在不同表的列中?
我正在使用 MySQL