MySQL Forums
Forum List  »  Newbie

Re: Column Data Type Question
Posted by: Peter Brawley
Date: February 19, 2014 04:45PM

drop table t;
create table t(semester varchar(5));
insert into t values('2006S');
select * from t;
+----------+
| semester |
+----------+
| 2006S    |
+----------+

Let's see the result of Show Create Table for your table.

Options: ReplyQuote


Subject
Written By
Posted
February 19, 2014 11:49AM
Re: Column Data Type Question
February 19, 2014 04:45PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.