|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
SQL Search Query help!
i want to do a select * from tablename where column like '%someword%'
and be able to return the amount of times someword was found in each field is there and easy way to do this through a sql query? |
|
#2
|
|||
|
|||
|
RE: SQL Search Query help!
I don't know that this is possible with generic SQL. What database system are you using? It is possible that it may support a function to accomplish this..
|
|
#3
|
|||
|
|||
|
RE: SQL Search Query help!
we are running PSQL version 7
|
|
#4
|
|||
|
|||
|
RE: SQL Search Query help!
SELECT *, count(col)
FROM tbls 'where col like '%someword%' GROUP BY col |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Database Help > SQL Search Query help! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|
|