本文主要是介绍建库建表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
drop database if exists zpark;CREATE DATABASE zpark DEFAULT CHARACTER SET=UTF8;
create table tb_user
(
id int(12) auto_increment not null primary key,
name char(20) not null,
password char(20),
address varchar(100) default "北京",
regtime date
);
insert into tb_user (name,password,regtime) values ('tillzhang','123456','2007-08-21');
insert into tb_user (name,password,regtime) values ('till','234567','2007-08-22');
describe命令察看刚建立的表结构
mysql>describe
这篇关于建库建表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!