저도 SQL에서 배열을 쓰지는 않아서... --;; 게다가 질문하신 내용도 제가 직접 해보고 답변을 드리기에도 너무 광범위한
내용을 요구하시는 거 같아 구체적인 답변도 힘들겠구요.
공개된 인터베이스 6.0 문서들 중 Language Reference에 찾아보니 다음과 같이 선언할 수 있다고 하는군요.
When declaring arrays, you must include the outermost brackets, shown below in bold.
For example, the following statement creates a 5 by 5 two-dimensional array of strings,
each of which is 6 characters long:
my_array VARCHAR(6)[5,5]
Use the colon (:) to specify an array with a starting point other than 1. The following
example creates an array of integers that begins at 10 and ends at 20:
my_array INTEGER[10:20]
그럼...
이원진 님이 쓰신 글 :
: 인터베이스에서 배열 처리하는 방법좀 부탁합니다...
: 1.테이블생성
: 2.insert 시키는 방법
: 3.update 시키는 방법
: 4.delete 시키는 방법
: 5.select 하는 방법
|