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.
我想将二进制矩阵存储到数据库中。
矩阵示例:
0 1 0 0 1 1 0 1 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 1 0 1 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 1 1 1 0
最好的方法是什么?
OBS:我不太了解 db。
谢谢。
或者如果您知道任何行和列中的位数,您可以将其保存为一位十进制(11135377233198751900)或十六进制(9A88CE9888C8A09C)数字
您可以将其存储为 varchar(n^2)。如果您不需要在数据库中处理它,您还可以将每一行作为其值存储在矩阵中 - 例如,您的第一行将是 77。