Merge two tables

Hello all,  I may be having a brain freeze right now, but wondering if someone can help.  I have two tables and I want to merge them by sym.

First table 

(flip (enlist sym)!(enlist ABC))

sym

A

B

C

Second table 

(flip (enlist minute)!(enlist {[st;en;i] st+i*til 1+long$(en-st)%i}[04:00;04:03;1]))

minute

04:00

04:01

04:02

04:03

and I want to have final table like

sym minute

A   04:00

A   04:01

A   04:02

A   04:03

B   04:00

B   04:01

B   04:02

B   04:03

C   04:00

C   04:01

C   04:02

C   04:03

Thanks

t cross t1

awesome thanks!

Another solution: `sym xasc raze t,:/:t1