You are using a browser which is not compatible with CSS (for more information, see Tara's tutorial).
Because of this, it is possible that our website may not appear
correctly in your browser. We apologise for the inconvenience, and
recommend you upgrade your browser to one which is compatible with CSS.
For more information, please visit our Browser Upgrade page.
name varchar(150),
description text,
price varchar(50)
);
# Let's insert some data:
INSERT into test (name, description, price) VALUES ('Banana', 'Funny yellow crescent shaped thing', '0.99/bunch');
INSERT into test (name, description, price) VALUES ('Pineapple', 'Lovely and juicy', '1.69 ea');
INSERT into test (name, description, price) VALUES ('Apples', 'Many different varieties available. Come and see our range', '0.69/pound');
INSERT into test (name, description, price) VALUES ('Oranges', 'Just arrived straight from Israel', '1.42/Kg');
Is this using MySql 4 or 5?
Add a new comment