6 lines
65 B
MySQL
6 lines
65 B
MySQL
|
use studb;
|
||
|
|
||
|
-- 使用表的别名查询
|
||
|
select a.*
|
||
|
from t_stu a;
|