Combining queries

  • Thread starter Thread starter doenka
  • Start date Start date
D

doenka

I want to update a column with a update query, the type of the field is text
and I want to change a .(dot) into :. If I run the query I get no result. It
should not be that difficult. What am I doing wrong
 
doenka said:
I want to update a column with a update query, the type of the field is text
and I want to change a .(dot) into :. If I run the query I get no result. It
should not be that difficult. What am I doing wrong

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Who knows, you haven't shown your query.

Have you tried using the Replace() function?

UPDATE table
SET column_name = Replace(column_name, ".", ":")
WHERE <criteria>
--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
** Respond only to this newsgroup. I DO NOT respond to emails **

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBR765eYechKqOuFEgEQIJNQCfV726b36q+NLGUXLJyYfam2PgLwMAnjTv
kgIFslkUB2UpcO+fTU+5x3o3
=+0g8
-----END PGP SIGNATURE-----
 
Back
Top