Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通常使用 varchar(250) 将每个坐标为浮点数的格式的物理矢量位置存储(x,y,z)在单个列中,或者将每个 x、y、z 分量存储为三个单独的列...
(x,y,z)
我想知道这种向量结构是否有更合适的格式来存储在 MySQL 中?而且,如果是这样,查询数据是否会与平常不同SELECT vector_col from table?
SELECT vector_col from table
您可以尝试使用 SET,尽管它是一种文本类型,因此您需要将值解析回浮点数。可能不会像您当前的三列方式那样有效。
MYSQL SET 数据类型