Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8978733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T19:41:03+00:00 2026-06-15T19:41:03+00:00

In MS SQL Server, you can declare local variables of any primitive type, or

  • 0

In MS SQL Server, you can declare local variables of any primitive type, or of a table type. This table is a normal table that you can run SELECT, INSERT, UPDATE and DELETE on, just like any other table, except that it’s a local variable, not a part of the database itself.

I’m trying to do the same thing in Firebird, but it doesn’t seem to like the syntax.

declare variable value int; --works fine
declare variable values table (value int); --Error: "Token unknown (table)"

Is there any way to do this? (And before anyone says “use a selectable stored procedure,” that won’t work. I need something I can dynamically run INSERT and SELECT on.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T19:41:04+00:00Added an answer on June 15, 2026 at 7:41 pm

    Firebird doesn’t support table variables the same way SQL Server does.

    The close thing you have at your disposal is Global Temporary Tables (Requires Firebird 2.1 or greater)

    (v.2.1) Global temporary tables (GTTs) are tables that are stored in the system catalogue with permanent metadata, but with temporary data. Data from different connections (or transactions, depending on the scope) are isolated from each other, but the metadata of the GTT are shared among all connections and transactions.

    There are two kinds of GTT:

    with data that persists for the lifetime of connection in which the specified GTT was referenced; and

    with data that persists only for the lifetime of the referencing transaction.

    You have to create the GTT beforehand.

    CREATE GLOBAL TEMPORARY TABLE
      ...
      [ON COMMIT <DELETE | PRESERVE> ROWS]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the SQL Server, I can define local variables like this. declare @id number
Environment : SQL Server 2005 I have this type of request SELECT * FROM
How can I do the following in SQL Server DECLARE @Local nvarchar(20) SET @Local
In SQL Server, you can declare a table variable ( DECLARE @table TABLE ),
When writing a query for SQL Server, you can declare and use variables like
In SQL Server I can use this: DECLARE @PageNum AS INT; DECLARE @PageSize AS
In SQL server I can say: Select top 50 percent How can I say
Which SQL Server table can I locate keywords associated with a page in DotNetNuke?
In MS SQL Server Management Studio 2005, running this code EXEC('SELECT * FROM employees
In Oracle's PL-SQL, you can declare a variable and define its type based on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.