Wiki source for MySqlCreateTable
===MySQL Create Table===
==create==
%%(sql)
create table mytable
(
ourbrands int(2) not null ,
country_id int(2) not null ,
ob_name varchar(200) ,
ob_image varchar(200)
)
%%
==verify==
%%(sql)
show create table mytable
%%
----
REFERRERS
{{backlinks}}
==create==
%%(sql)
create table mytable
(
ourbrands int(2) not null ,
country_id int(2) not null ,
ob_name varchar(200) ,
ob_image varchar(200)
)
%%
==verify==
%%(sql)
show create table mytable
%%
----
REFERRERS
{{backlinks}}