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

  • Home
  • SEARCH
  • 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 6593893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:44:28+00:00 2026-05-25T17:44:28+00:00

When writing a query for SQL Server, you can declare and use variables like

  • 0

When writing a query for SQL Server, you can declare and use variables like this:

declare @test int
select @test = max(ID) from MyTable1
update MyTable2 set (...) where ID > @test
update MyTable3 set (...) where ID < @test

Is there a way to declare and use variables similarly when writing a query for MS Access?

I need to populate the variable with the result of another query and then use that value to perform insert/update operations. The query will be run from a .NET app.

  • 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-05-25T17:44:28+00:00Added an answer on May 25, 2026 at 5:44 pm

    In a way

    parameters @test int;
    select * from MyTable where ID = @test
    

    However, you cannot use set @test = 1234, the parameter can be manually entered when the query is run or set in VBA.

    Joel Coehoorn
    In Query MS Access database in VB 2008

    You use the classes in the System.Data.OleDb namespace to query access
    databases:

    Using cn As New OleDbConnection("connection string here"), _
          cmd As New OleDbCommand("SELECT query with ? parameter here", cn)
    
        cmd.Parameters.Add("?", OleDbType.Int).Value = 1234
    
        MyCombobox.DataSource = cmd.ExecuteReader()
    End Using
    

    Further Notes re Edit to OP

    Query 1

    update MyTable2 set (...) where ID > (select max(test) from table1)
    

    Query 2

    update MyTable3 set (...) where ID < (select max(test) from table1)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know several ways of writing paged query in SQL Server 2005. But I
I'm writing a SQL query in SQL Server in which I need to replace
I am writing a query in SQL server2005. This is returning me a duplicate
I'm writing a stored procedure on SQL Server 2000. I've written a complicated select
I'm writing a stored procedure in SQL Server 2008. It's a really long query
I was writing a query against a table today on a SQL Server 2000
I am using SQL Server 2008. I am writing a query where I need
I'm writing an SQL Query, where a few of the columns returned need to
I am writing an SQL query which involves finding if timestamp falls in particular
I'm writing a PHP script that builds an SQL query by concatenating the string

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.