Rename a column name which has been created by a math function in thesql? Using ALTER TABLE is giving ERROR: 1064 (42000)

alter-tableMySQLrename

INPUT:

CREATE TABLE dist
-> SELECT ST_DISTANCE(POINT(x1,y1),POINT(x2,y2))
-> FROM config;

OUTPUT:

+------------------------------------------+
| ST_DISTANCE(POINT(x1,y1) , POINT(x2,y2)) |
+------------------------------------------+
|                        140.0071426749364 |
|                       139.30183056945089 |
|                        138.6001443000692 |
|                       137.90213921473443 |
|                       137.20787149431334 |
+------------------------------------------+

RENAME COLUMN INPUT

> ALTER TABLE dist
-> RENAME COLUMN ST_DISTANCE(POINT(x1,y1),POINT(x2,y2)) TO Values;

ERROR: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(POINT(x1,y1),POINT(x2,y2)) TO Values' at line 2

Best Answer

Besides that Values is a very bad choice for a column name, as are all reserved words

You can give the column a name by creation. like

CREATE TABLE dist (`Values` DECIMAL(12,11))
 SELECT ST_DISTANCE(POINT(x1,y1),POINT(x2,y2)) as 'values'
 FROM config;