Ask a Question related to ASP Database, Design and Development.
-
Lasse Edsvik #1
Update in access
Hello
I have a table with about 900 rows and i would like to update them all......
all have a prefix infront of them followed by a _ and i want to remove that
and all infront of it......
e.g
AB_test
CCC_test2
XX_test3
XD_test4
AB_adff
should be:
test
test2
test3
test4
adff
there are about 30 different ones so i dont wanna do that manually for each
one :(
TIA
/Lasse
Lasse Edsvik Guest
-
Update Access using Flash and ASP
I am trying to update a client's prices which are to be set equal to another clients existing prices. That is, the client with client_no = 10025 is... -
Access Database will not update
I've got CF7 running on WinXP SP2 with Access 2000 database. Very simple table - 4 fields, all text except the Key. I can view, I can Insert, but... -
update access db from flash app
Ok this is like a two part app. One app to view details about bands gig listings; this part i have working fine. The other app is to allow bands to... -
update Access with checkbox
Hi, strangly enough i can make all sorts of update pages with MM DW but not when a checkbox is involved. The checkbox must update an Access Dbase... -
Cannot Add/Update Access db with IIS 5.1
I got problem to insert or update new record into the Access database. For your information, I run my ASP program on Win XP Professional... -
Bob Barrows #2
Re: Update in access
Lasse Edsvik wrote:
UPDATE tablename> Hello
>
> I have a table with about 900 rows and i would like to update them
> all......
>
> all have a prefix infront of them followed by a _ and i want to
> remove that and all infront of it......
>
> e.g
>
>
> AB_test
> CCC_test2
> XX_test3
> XD_test4
> AB_adff
>
>
> should be:
>
> test
> test2
> test3
> test4
> adff
>
> there are about 30 different ones so i dont wanna do that manually
> for each one :(
>
> TIA
> /Lasse
SET fieldname = Mid(fieldname,Instr(fieldname,"_")+1)
HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows Guest



Reply With Quote

