Ask a Question related to Dreamweaver AppDev, Design and Development.
-
LiquidD33 #1
Recordset Help
Hey all,
I am wondering if someone could help me create an SQL query for a recordset I
am building.
I have a database with many tables. In one table, records are inserted by a
program, and the other tables are for references. What I am trying to do is
take a column (ex. utilites) that has this string it it- (235,365,5, 11, etc)
and convert it to a Feature (ex. Water, Electricity) The Feature Table has 2
columns, the numbers, and the value (or feature).
How can I write the SQL to take the 235,365,5,11 and convert it to my Feature
value?
Thanks ahead if someone can answer this.
LiquidD33 Guest
-
ASP Recordset Help!
Hi, I have been trying to construct a results page in dreamweaver/asp if i put a search in with one parameter it works fine (ie, select name from... -
Using a Recordset
I'm trying to expand my web design skills by learning how to include some dynamic content in a site. Currently I have an Access database, and... -
Is this possible with a recordset?
Hello, Looking for some expert help. I am using Dreamweaver MX 2004. I have a need that I was wondering if it was possible accomplish using a... -
ADO - Recordset
I was wondering if anyone can help me. I've converting an already existing system (designed in Access which produces reports for the accounts dept)... -
RecordSet.Move or RecordSet.AbsolutePosition??
Hi, I'm trying to use either one of these methods to position the cursor in a specific position inside a recordset, but neither one seems to... -
brownd1 #2
Re: Recordset Help
Create a look up table (LOOK) within the database with 2 columns -- one will
be: utlSTR and the other will be: featureSTR.
Column utlSTR = 235
Column featureSTR = Water
--------------------------------------------------------------------------------
-------------
So, SELECT * FROM LOOK, SOMEOTHERTABLE WHERE LOOK.utlSTR = SOMETABLE.utlSTR
and featureSTR = 'Water'
--------------------------------------------------------------------------------
-------------
Does that help?
brownd1 Guest



Reply With Quote

