MySQL Cookbook

From Littledamien Wiki
Revision as of 15:42, 15 September 2024 by Video8 (talk | contribs)
Jump to navigation Jump to search

Create table

CREATE TABLE IF NOT EXISTS `shipping_rates` (
	`id` int(11) NOT NULL auto_increment
	, `region` varchar(50) default NULL
	, INDEX `IX_shipping_rates_region` (`region` ASC) 
	, PRIMARY KEY  (`id`)
);

See also

Change the definer of a procedure

To see all definers:

SHOW PROCEDURE status;