jsp数据库操作很具体有sql知识
1,SQL语句分为两类:DDL(DataDefinitionLanguage)和DML(DatManipulationLanguge,数据操作语言)。前者主要是定义数据逻辑结构,包括定义表、视图和索引;DML主要是对数据库进行查询和更新操作。
2,CreateTable(DDL):
CreateTabletabName(
colName1colType1[else],
colName2colType2[else],
...,
colNamencolTypen[else]
);
例如:CteateTablepJoiner(
pnochar(6)notnull,
下载地址
用户评论