Jochem van Dieten wrote:
> Simon Cornelius P.Umacob wrote:
>> 
>> In addition, how do I manipulate the nth column of any given table?
> 
> Not.

On second thought you can do it as a 2-step process (MySQL > 
5.02). First you get the name of the column from the information 
schema, then you can manipulate it in a second query:

SELECT  COLUMN_NAME
FROM    INFORMATION_SCHEMA.COLUMNS
WHERE   table_name = <cfqueryparam value="#tbl_name#">
    AND  table_schema = <cfqueryparam value="#db_name#">
    AND  ordinal_position = <cfqueryparam value="#N#">

Jochem

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207728
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to