Jump to content

SQL set Table to Default Values


Monk3h

Recommended Posts

Im currently working on a reset script that will reset every feild in the players table to tthere default Value.

 

My original plan was to use.

 

		mysql_query("update players set feild=defaultvalue");

 

And make one of them for every single feild in the table.

 

 

Is there a faster way too do this? a built in value that sets a table back to its default values maybie?

Link to comment
https://forums.phpfreaks.com/topic/107079-sql-set-table-to-default-values/
Share on other sites

I'm not anywhere expert in mysql but I suppose you could like, go into phpmyadmin and get the db to dump the query that creates the table (with the defaults), then in your reset script, you could like, drop the table and recreate it with that query. 

 

I'm going to move your thread over to the sql section they would know if there's a better alternative.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.