Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Server version of this Oracle statement

Status
Not open for further replies.

nljoco

Programmer
Dec 10, 2001
6
US
How will I convert the following oracle statement into a SQL Server?

TYPE RecordItem IS RECORD(
Field1 INT,
Field2 INT );
 
DECLARE @RecordItem table(field1 int, field2 int)

Of course this will hold more than one record but only if you put more than one in it. SQL Server 2000 only. I started out with nothing, and I still have most of it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top