vote up 1 vote down star

Is it allowed to cast types in ANSI SQL like in postgres for example:

SELECT SUM( CAST(qnty AS int) - CAST(reserve AS int) )  AS sum
...

qnty and reserve are character columns.

flag

33% accept rate

1 Answer

vote up 1 vote down check

The CAST expression was added in SQL-92. You can see it for example in this draft.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.