如 想查询通讯录的人: public static final Uri CONTENT_URI =          Uri.parse("content://contacts/people");
图片 URL="******";
我现在的写法: 先查询出人员的id..
然后再写一条新的sql语句查询出这个人员的图片...现在想直接 select 名字,号码,(select 图片 from 图片表 where peopleID=人员表.id) from 人员表 
where 人员表.名字="张三"
请问这种写法怎么写?