Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您有这样的查询时:
select A,B from MYTABLE where C='1'
您只需声明以下内容:
#sql iterator Cursor(String A, String B);
但是,如果您有这样的查询怎么办?
select T1.A, T1.B from MYTABLE T1 where C='1'