Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Greasy #1
How to Pull 1 word from a phrase in a table?
i need to be able to pull everything with the word Belcher from DEPO @ 1875
N. BELCHER, DEPO @1875 N. BELCHER STE. 102, etc... basically anything with the
word Belcher in it i need to display from this table. do i do this in a query
or in the output?
and how do i do it?
Greasy Guest
-
Nested Style to exact "Word" or "Small Phrase"
Ok, this question is for all you nested style experts - I use and love nested styles, but there's one trick I haven't figured out. As background, I... -
dynamic pull-down based on another pull-down
Greetings, is there a tech doc somewhere to show: 1) 2 pull-downs, dynamically loaded from two record sets. first is "State" and next is "City"... -
Pull from 1 table to enter into table 2..??
Hello all, Here is my goal: I want to enter a note in a table called ClientNotes for certain clients from my ClientList table. Table:... -
How to pull the data out from two table and bind to repeater
HI All, Can somebody help what's wrong with my SQL Query statement when i want to create a join table query. It suppose work perfectly fine, but... -
Rotating Phrase Box
I'm trying to make an animation that rotates phrases every five minutes or so. Is a flash animation the way to go? Any suggestions? -
_andyK #2
Re: How to Pull 1 word from a phrase in a table?
I found a great tag that can accomplish exactly what you want.
[url]http://www.contentbox.com/claude/customtags/tagstore.cfm[/url]
The tag cf_REextract works great. At $15 you can not go wrong.
_andyK Guest
-
Greasy #3
Re: How to Pull 1 word from a phrase in a table?
well is there a way to do it manually instead of paying.. im trying to do this on the free basis lol.
Greasy Guest
-
arniebld #4
Re: How to Pull 1 word from a phrase in a table?
what database are you using?
arniebld Guest
-
CF_fdk #5
Re: How to Pull 1 word from a phrase in a table?
By using substr and instr functions (Oracle) you'll manage to get the wanted result. Most databases have similar functions
CF_fdk Guest
-
-
cjeris #7
Re: How to Pull 1 word from a phrase in a table?
For SQL Server, perhaps you just want
SELECT {your-list-of-columns}
FROM {your-table}
WHERE {your-search-column} LIKE '%belcher%'
?
I don't think you can use LIKE on columns of type (N)TEXT though, only
(N)(VAR)CHAR.
cjeris Guest
-



Reply With Quote

