ユーザー:
userid username password
1 venkat reddy sa
2 reddy as
3 re sa
位置:
id userid lat lon
1 1 14.00 15.00
2 2 15.00 17.23
3 3 15.00 17.23
友達:
id userid friendid isActive
1 1 2 true
1 2 1 true
userid=1
andを渡した場合のようにクエリを実行する必要がありますusername=re
。次に、 and で始まるすべての行を取得する必要があります。re
そのユーザーが既に友人である場合は、彼のユーザー名とユーザー ID のuserid
ようなステータス メッセージを返します。already friend
ユーザーが現時点で友達でない場合は、ユーザー名やユーザーIDなどの詳細を提供してください。
教えてください ....
例: userid =1 username=re
次に、次のような出力が必要です
<OutputResponse>
<Response>
<userid>2</userid>
<username>reddy</username>
<lat>15.00</lat>
<lon>17.23</lon>
<status>already friend</status>
</Response>
<Response>
<userid>3</userid>
<username>re</username>
<lat>15.00</lat>
<lon>17.23</lon>
<status>not a friend as of now</status>
</Response>
</OutputResponse>