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.
我想在我的数据库表中插入一些数据。我的名为 PatientInfo 的表包含列PName、DOfBirth、Telephone、Sex
我试过这个查询:INSERT INTO PatientInfo (PName, DOfBirth, Telephone, Sex) VALUES ('XXXX', 28, 0111000000, 'Female');
但出现此错误: [Err] 1416 - 无法从您发送到 GEOMETRY 字段的数据中获取几何对象
有人可以帮我吗...
LINESTRING 数据类型用于存储空间数据。PName 和 Sex 列的数据类型应该是文本类型;VARCHAR 可能是他们最好的数据类型。