Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
sweetyp2005 #1
move row in table
How do I move up and down and delete row in a table?
sweetyp2005 Guest
-
Can move my table
:confused; I can move the border over! it's driving me nuts! i drag it and it just pops back where it was. Grrr. is it locked or something?!?!? how... -
Could not load type VTFixup Table from assembly Invalid token in v-table fix-up table.
We are getting this error after clearing the web.config of database infomation - even after using the wizard to re-enter the information. I could... -
move record from 1 table to another table
how can i move info from 1 table to another? I have a table with a form. The table and the form are called customer. I want to move selected... -
(Stored Procedures) Can't get one table to move contents to another
Hi, ERROR (at execution): "Disallowed implicit conversion from data type datetime to data type tinyint, table "xyz.dbo.tmpTrenddata', column... -
alter table move into temporary tablespace.
I'm trying to shrink a datafile, which has plenty of free space: SQL> alter database datafile '/u02/oradata/s_amp.dbf' resize 1000M; alter... -
Dan Bracuk #2
Re: move row in table
To delete, you do this:
<cfquery>
delete from mytable
where etc
</cfquery>
You can query a table, sorting by various fields, and in cold fusion you can
navigate through query results using either <cfloop>, <cfoutput> or a loop in
<cfscript>
Dan Bracuk Guest



Reply With Quote

