devxlogo

Problem with Select Statement

Problem with Select Statement

Question:
I’m writing a select statement to make a table name a variable whose value is set according to a condition:

Var tablename;tablename := emp tableselect * from tablename;

But I get an error message. How do I make this statement work?

Answer:
Your syntax is close to what you need. But you need to call the EXECUTE command with the SQL string. Here’s code you can run in Query Analyzer that uses a variable for the table name and retrieves all the records from the Employees table:

DECLARE @TableName varchar(255)SET @TableName = 'Employees'EXEC ('SELECT * FROM ' + @TableName)

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist