MySQL起别名只能在查询语句中使用对吗?

起别名只能在查询语句中使用对吗?
比如:
insert into mama(id,name AS 姓名)values(1,'别名测试');
结果:
查询: INSERT INTO mama(id,name as 姓名)VALUES(1,'别名测试')错误代码: 1064
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 'as 姓名)VALUES(1,'别名测试')' at line 1

是的,一般取别名是为了对查询结果的显示,方便用户理解。
其他语句取别名没有意义。