Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Delete all records ASP/VBS Access

LEGEND ,
Oct 18, 2006 Oct 18, 2006

Copy link to clipboard

Copied

Hi,

Is it possible to delete all records that match a textfield

i.e. I have a text field on a form and I would like to delete all records in
the database table that match the textfield in a column.

Using ASP/VBS MS Access

Regards,

Sanj



TOPICS
Server side applications

Views

343
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 19, 2006 Oct 19, 2006

Copy link to clipboard

Copied

www.sqlcourse.com
www.sqlcourse2.com

F1 in Access will help, too.


"Sanj" <webuser@mm.com> wrote in message
news:eh6fsg$5k3$1@forums.macromedia.com...
> Hi,
>
> Is it possible to delete all records that match a textfield
>
> i.e. I have a text field on a form and I would like to delete all records
> in the database table that match the textfield in a column.
>
> Using ASP/VBS MS Access
>
> Regards,
>
> Sanj
>
>
>


Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Oct 19, 2006 Oct 19, 2006

Copy link to clipboard

Copied

LATEST

DELETE FROM tablename
WHERE column = 'value'

This is very basic SQL so I would strongly advise you to look into the
courses that Lionstone pointed out to give yourself a good grounding.
HTH
Cheers,
http://robgt.com/ [Tutorials and Extensions]
Firebox stuff: http://robgt.com/firebox
Skype stuff: http://robgt.com/skype
SatNav stuff: http://robgt.com/satnav



Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines