mpe_x_test.ddl
Go to the documentation of this file.
1 /**
2  @file
3  @brief DDL for Test Table
4  @details
5 
6 
7  @version 9.2
8  @author 4GL Apps Ltd
9  @copyright 4GL Apps Ltd
10 **/
11 
12 
13  create table &curlib..mpe_x_test(
14  primary_key_field num,
15  some_char char(32767) ,
16  some_dropdown char(128),
17  some_num num ,
18  some_date num format=date9.,
19  some_datetime num format=datetime19. informat=ANYDTDTM19.,
20  some_time num format=time8.,
21  some_shortnum num length=4,
22  some_bestnum num format=best.,
23  constraint pk_mpe_x_test
24  primary key(primary_key_field));