<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title>
create table video ( id int not null primary key auto_increment , name varchar(100) not null , introduce varchar(1000) not null , type int not null, url varchar(1000) not null );
insert into video values( 1 , '星月神话' , '古装爱情剧' , 1 , 'movie/1.flv' ); insert into video values( 2 , '第一次爱的人' , '歌曲散发爱情' , 1 , 'movie/2.mp4' );