create table {node_bm} (
        vid int(10) unsigned NOT NULL default '0',
        nid int(10) unsigned NOT NULL default '0',
        xyid int(10) unsigned NOT NULL default '0',
        foo varchar(32),
        primary key (vid,nid),
        key xyid(xyid)
);
create table {node_xy} (
        vid int(10) unsigned NOT NULL default '0',
        nid int(10) unsigned NOT NULL default '0',
        foo varchar(32),
        primary key (vid,nid) 
);

xyid is a reference to other node type node_xy's nid;       

I want list those fields : node_bm.foo,node_xy.title,node_xy.foo
how to write node_bm_views_tables()?
thx.

Comments

merlinofchaos’s picture

Gah, been almost a month. Sorry, I've had a serious deadline at work and totally let this stuff go.

Do you still need me to explain this? It's been awhile. If you do I'll get to it right away, but I'm not going to spend the time writing it up if you're ok.

oscnet’s picture

thx, I need help also now, so would you please give to some example code?

oscnet’s picture

Status: Active » Closed (fixed)