vote up 0 vote down star

Is there any equivalent to %TYPE in MSSQL2005?

CREATE TABLE TEST (ID NUMBER(5));

DECLARE
myVar TEST.ID%TYPE;
BEGIN
................
END;
flag

1 Answer

vote up 3 vote down check

No, there isn't any way to inherit the type of a table column when declaring variables in SQL Server 2005 (or 2008, for that matter).

The closest you could get would be to create a user-defined type, and then use it in the table and the code.

link|flag

Your Answer

Get an OpenID
or

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