Hi Cory!
Can't thank you enough for all the help!
I see your point about the key field name and reserved words. Guess I'm still too new to spot the keywords I'm using. Is "key" a better name? Or "index"? Would appreciate any pointers here.
I didn't know about the PAM structure export function (see, I AM a very new noob!) until now.
Here's the result:
-- phpMyAdmin SQL Dump
-- version 2.7.0-pl2
-- http://www.phpmyadmin.net
--
-- Host: 10.0.11.64
-- Generation Time: May 04, 2006 at 02:22 PM
-- Server version: 4.0.24
-- PHP Version: 4.3.2
--
-- Database: `broughton`
--
-- --------------------------------------------------------
--
-- Table structure for table `Names`
--
CREATE TABLE `Names` (
`primary_key` tinyint(3) unsigned zerofill NOT NULL auto_increment,
`firstname` varchar(15) NOT NULL default '',
`middle` varchar(15) default NULL,
`lastname` varchar(20) NOT NULL default '',
`suffix` varchar(5) default NULL,
`marriedname` varchar(20) default NULL,
`sex_marital_status` char(1) default 'F',
UNIQUE KEY `primary_key` (`primary_key`)
) TYPE=MyISAM COMMENT='Broughton HS Class of 1960 Members' AUTO_INCREMENT=2 ;
--
-- Dumping data for table `Names`
--
__________________
BobH - The Ancient Noob
Never try to teach a pig to sing.
It wastes your time and irritates the pig!
|