比如:有一个表t
两种方式查询:
1、用"select a,b,c from t where a=1"建立一个视图v_test,再对视图查询"select a,b,c from v_test where b=2"2、直接查询"select a,b,c from t where a=1 and b=2"请问哪个效率更高或者都一样?