1. oracle select *, id需要在星号前加别名,mysql则不需要
mysql语法:
sql
select *, id from xin_student_t;
oracle语法:
sql
select st.*, st.id from xin_student_t st;