基本的SELECT语句 列的别名 方式一:SELECT name 名字 FROM student; 方式二:SELECT name AS 名字 FROM student; 方式三:SELECT name "名字" FROM s...