....
mf_getmfinfo.o: mf_getmfinfo.c
        $(CC) -I$(INCLUDE) -c mf_getmfinfo.c $(CFLAGS) $(LIBPATHS)
mf_getmfinfo.c: mf_getmfinfo.pc
    $(PROC) mode=ansi iname=mf_getmfinfo.pc oname=mf_getmfinfo.c
...
自定义的makefile文件,为什么就是不执行上面的语句

解决方案 »

  1.   

    declare num int;
     begin
     select count(*) into num from dba_tables where table_name ='MVS_MK_USERINFO';
     IF num=0
     then
     execute immediate 'create table emp(a int)';  --添加代码
     end if;
     end;
      

  2.   

    if (NOT EXISTS (SELECT TABLE_NAME FROM DBA_TABLES WHERE TABLE_NAME = 'MVS_MK_USERINFO')) then