最近更新时间: 2025-02-18 16:02:00
postgres=# select * from student as st where st.f1=1; f1 | f2 ----+---- 1 | 2 (1 row) postgres=# select * from student st where st.f1=1; f1 | f2 ----+---- 1 | 2