Nevermind the space. Is the syntax different for pervasive SQL, does it support variable names?
Main Topics
Browse All TopicsI want to select an entire column that is the same as my variable. I was given this solution, whihc works, but not for Pervasive SQL, any thoughts?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I'm confused by what you're trying to do.
You can do something like this:
sSQL = "SELECT " + colname + " FROM tablename"
Then execute the statement. You don't say what language or interface you are using.
If you're column name is a SQL keyword, you need to enclose it in double quotes. For example:
create table t1 (f1 char(100), "table" char(10));
select "table" from t1
Business Accounts
Answer for Membership
by: ToddBeaulieuPosted on 2009-08-11 at 09:14:36ID: 25070641
Not specific to any DB, you're building a column name that has a space in it. You'll need to surround it with something. In the MS world, it's brackets:
[My Col Name]
That's a strange column name you've got there.