use studb;
-- 从多个表中查询数据时,如果存在相同的字段时,字段名前必须加表名
select *
from t_stu t1, t_stu t2;
where t1.sid > 2 and t2.sid > 3;
/*
本案例打印结果会出现笛卡尔乘积
*/