VbzCart/tables/cache queries
< VbzCart | tables
Jump to navigation
Jump to search
Revision as of 20:58, 8 March 2009 by Woozle (talk | contribs) (New page: ==About== * '''Purpose''': List of stored procedures which update one table from others ==SQL== <section begin=sql /><mysql>DROP TABLE IF EXISTS `data_procs`; CREATE T...)
About
- Purpose: List of stored procedures which update one table from others
SQL
<mysql>DROP TABLE IF EXISTS `data_procs`;
CREATE TABLE `data_procs` (
`ID` INT NOT NULL AUTO_INCREMENT COMMENT "procedure ID", `Name` varchar(127) NOT NULL COMMENT "name of SQL stored procedure", `isActive` BOOL COMMENT "FALSE = skip this record", `doesClear` BOOL COMMENT "TRUE = clears all data from table before starting", `Notes` varchar(255) DEFAULT NULL COMMENT "explanatory notes", PRIMARY KEY (`ID`) ) ENGINE = MYISAM;</mysql>