RE: Primary field do I need one

2006-12-26 Thread Jay Blanchard
[snip] I'm working through (my first day) PHP MySQL for Dummies and I'm stuck on the primary field for my database. I want to create a racing pigeon results database that has 6 fields only. The results will be imported into the database in bulk from a CSV file Owner - GBring - Ering - Arrivedtime

Re: Primary field do I need one

2006-12-26 Thread Martijn Tonies
I'm working through (my first day) PHP MySQL for Dummies and I'm stuck on the primary field for my database. I want to create a racing pigeon results database that has 6 fields only. The results will be imported into the database in bulk from a CSV file Owner - GBring - Ering -

Re: Primary field do I need one

2006-12-26 Thread meridklt
meridklt wrote: I'm working through (my first day) PHP MySQL for Dummies and I'm stuck on the primary field for my database. I want to create a racing pigeon results database that has 6 fields only. The results will be imported into the database in bulk from a CSV file Owner - GBring -

Re: oracle transfer question

2006-12-26 Thread ViSolve DB Team
Hi, Try using STDDEV(), which was given for Oracle compatibility by MySQL. SELECT employee_id, salary, hire_date, STDDEV(salary) Std Deviation of Salary FROM employees WHERE job_id = 'ST_CLERK' Group by employee_id, salary, hire_date ORDER BY hire_date; Thanks, ViSolve DB Team. -