please give me better query for this tables:
CREATE TABLE IF NOT EXISTS `member` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `firstname` varchar(32) NOT NULL DEFAULT '', `lastname` varchar(32) NOT NULL DEFAULT '', `username` varchar(15) NOT NULL DEFAULT '', `password` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM; CREATE TABLE IF NOT EXISTS `contact` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `memberid` int(11) unsigned NOT NULL DEFAULT '0', `firstname` varchar(32) NOT NULL DEFAULT '', `lastname` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM;
i need query for contact table and i need username in this query
please give me a better query
thank you so much


Sign In
Create Account


Back to top









