InterviewSolution
Saved Bookmarks
| 1. |
Which spatial datatype is used to store a curve?(a) GEOMETRY(b) POINT(c) LINESTRING(d) POLYGON |
|
Answer» The correct option is (c) LINESTRING To explain I would say: In MySQL, there are many spatial datatypes available for use. Some examples are GEOMETRY, POINT, LINESTRING and POLYGON. The LINESTRING type is used to represent a curve. |
|