mau tanya dunkzz..
kalo query sql left join bisa ditaro di vb.net gak untuk pemanggilan data, yg akan di tampilkan dalam ultrawebgrid infragistics,, contohnya,,
===================CODING + QUERY DI VB.NET====================
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
Dim sqlStringLoc As String = "" & _
"SELECT MEM_ID, MEM_DESC " & _
" FROM VER where mem_id > 80000001"
Dim sqlString As String = " select to_char(u.mem_desc) as unit, to_number(f.line_id) as account, to_char(l.mem_desc) as accountname, to_char(c.mem_desc) as produk " & _
" from finloc_base f, (select mem_id, mem_desc " & _
" FROM UNIT where mem_id in (select distinct mem_id from unit_tree where set_id = 80000025) and mem_type = 'R' " & _
" and mem_id <> '80000155' and mem_id <> '80000156' and mem_id <> '80000157' and mem_id <> '80000158' " & _
" and mem_id <> '80000189') u, " & _
" (select mem_id, mem_desc FROM CUST1 Where mem_id in (select mem_id from cust1_x_set) and mem_id <> '1574' and mem_id <> '300000') c, " & _
" (select mem_id, mem_desc " & _
" FROM LINE Where mem_id in " & _
" (select mem_id from line_x_set where set_id = 80000001) and formula_type <> 'T' " & _
" and mem_id > 80000000) l " & _
" where(f.unit_id = u.mem_id) " & _
" and (f.cust1_id = c.mem_id ) " & _
" and (f.line_id = l.mem_id) and u.mem_id = '101000' "
LoadData(sqlString, ds)
Me.UltraWebGrid1.DataSource = ds
Me.UltraWebGrid1.DataBind()
end sub
===================END=================================
mohon bantuannya ya... makasih...