Select Code+Cnt from Custom
위 구문에서 Code의 타입은 문자형이고 Cnt는 숫자형인데 두 필드를 합쳐서 하나의 필드로 사용할려고 합니다. 두 타입이 모두 문자형이면 되는데 다르면 Type mismatch라고 에러를 유발합니다.
SQL Server는 Convert라는 타입변환 함수가 있는데 Paradox에서 지원되는 함수는 없을까요?
그리고 Paradox DB의 지원되는 구문책이나 설명서같은 것이 있으면 소개해 주세요.
Paradox에 관련된 문헌을 구하기가 참 어려워서요...
아시는 분은 꼭 답변 부탁합니다.
델파이를 사랑하시는 모든 분들 수고하세요..
안녕하세요..자유게시판지기입니다.
현재 paradox에 관련된 자료는 델파이헬프에 의존을 할수밖에 없더군요..
파라독스에서 타입변환함수는 cast입니다.
select Code + cast(Cnt as char) from Custom
헬프내용을 첨부합니다.
좋은하루되시구요 자주오세요~
CAST function
Converts specified value to the specified data type.
CAST(column_reference AS data_type)
Description
Use CAST to convert the value in the specified column to the data type specified. CAST can also be applied to literal and calculated values. CAST can be used in the columns list of a SELECT statement, in the predicate for a WHERE clause, or to modify the update atom of an UPDATE statement.
The Data_Type parameter may be one of most column data type applicable to the table type used: CHAR, INTEGER, NUMERIC, and so on. Certain column types cannot be used as the source or target data types: BLOB, MEMO, and BYTES.
The statement below converts a Paradox DATETIME column value to DATE.
SELECT CAST(saledate AS DATE)
FROM ORDERS
Converting a column value with CAST allows use of other functions or predicates on an otherwise incompatible data type, such as using the SUBSTRING function on a DATE column.
SELECT saledate,
SUBSTRING(CAST(CAST(saledate AS DATE) AS CHAR(10)) FROM 1 FOR 1)
FROM orders
When applied to retrieved data of a SELECT statement, the effect is transient and does not affect stored data. When applied to the update atoms of an UPDATE statement, the effect is persistent and permanently converts the case of the stored values.
Note: the CAST function cannot be used with memo or BLOB columns.
김고진 wrote:
> Select Code+Cnt from Custom
> 위 구문에서 Code의 타입은 문자형이고 Cnt는 숫자형인데 두 필드를 합쳐서 하나의 필드로 사용할려고 합니다. 두 타입이 모두 문자형이면 되는데 다르면 Type mismatch라고 에러를 유발합니다.
> SQL Server는 Convert라는 타입변환 함수가 있는데 Paradox에서 지원되는 함수는 없을까요?
>
> 그리고 Paradox DB의 지원되는 구문책이나 설명서같은 것이 있으면 소개해 주세요.
> Paradox에 관련된 문헌을 구하기가 참 어려워서요...
> 아시는 분은 꼭 답변 부탁합니다.
> 델파이를 사랑하시는 모든 분들 수고하세요..