- Original Message -
From: "B Wiley Snyder" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 26, 2004 1:56 AM
Subject: mySQL beginner question
> Hello, hope this is the right list
>
> I created a table with the following code
>
Having duplicates is not a problem.
As long as you don't have a UNIQUE index on it.
Something else is happening in your code that is putting out the HTML I
would guess.
P.S. It should be SELECT * FROM jspCart_products;
(your table, not your database)
B Wiley Snyder wrote:
Hello, hope this is th
Hello, hope this is the right list
I created a table with the following code
CREATE TABLE jspCart_products (
ProductID int primary key,
CategoryID int,
ModelNumber varChar(75),
ModelName varChar(250),
ProductImage varchar(250),
UnitCost decimal(9,2),
Description BLOB,
);
The CategoryID has dupl