Skip to content

Instantly share code, notes, and snippets.

@dev-jaydeep
Created January 9, 2020 10:53
Show Gist options
  • Save dev-jaydeep/59891a8be27e4f103f87933b3fcc3770 to your computer and use it in GitHub Desktop.
Save dev-jaydeep/59891a8be27e4f103f87933b3fcc3770 to your computer and use it in GitHub Desktop.
CREATE TABLE `customer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cust_code` varchar(6) NOT NULL,
`cust_name` varchar(40) NOT NULL,
`cust_city` varchar(35) DEFAULT NULL,
`working_area` varchar(35) NOT NULL,
`cust_country` varchar(20) NOT NULL,
`phone_no` varchar(17) NOT NULL,
`agent_code` varchar(6) DEFAULT NULL
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment