insert into MEAL values ('2008-1-9', MEAL_A(MEAL_B('macintoshpc', '19:05'))) 
上面是我接手的程序中的SQL语句,我想知道MEAL_A和MEAL_B分别是什么,怎么定义的?怎么使用?最好有相关的资料连接。 补充: 
查询语句是: 
select N.* from table(select INFO from MEAL where apply_date='2008-1-9') N where N.name='macintoshpc' 
插入语句是: 
insert into table(select INFO from MEAL where apply_date='2008-1-9') values (MEAL_B('zhidao', '23:59'))再补充:如果只是查询MEAL表的情况,INFO下显示“oracle.sql.ARRAY@1735faa”这种字样。