RE: [PHP] Re: Command Line

2002-08-28 Thread esctoday.com | Wouter
bericht- Van: Adam Williams [mailto:[EMAIL PROTECTED]] Verzonden: 28 August 2002 03:19 Aan: Trevor Tregoweth CC: mysql; PHP Onderwerp: Re: [PHP] Re: Command Line if you just wanna delete everything from the tables you can do DELETE FROM table_name; for each table. or you can do DROP table_name

Re: [PHP] Re: Command Line

2002-08-27 Thread Adam Williams
if you just wanna delete everything from the tables you can do DELETE FROM table_name; for each table. or you can do DROP table_name; for each one but then you have to re-create each table that you drop with CREATe TABLE ( stuff here ); Only use DROP table_name; if you know the structure of ea