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

Delete all records ASP/VBS Access

LEGEND ,
Oct 18, 2006 Oct 18, 2006
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
346
Translate
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
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
>
>
>


Translate
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
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



Translate
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