Mysql Oracle 区别

1. oracle select *, id需要在星号前加别名,mysql则不需要

mysql语法:

select *, id from xin_student_t;

oracle语法:

select st.*, st.id from xin_student_t st;

2. oracle表定义了别名,在查询时可以不用别名指定字段,mysql必须用别名

你可能感兴趣的:(Oracle,mysql,oracle,数据库)