摘要:
On Error Resume Next sql = "Select * From [pe_infos]"set rs = conn.execute(SQL)If(Err)then Response.Write "資料表不存在"Else Response.Write "資料表存在"End If 阅读全文
文章分类 - Sql
sql 创建表、主键、索引
2008-12-03 18:17 by LvSir, 885 阅读, 收藏,
摘要:
CREATE TABLE "pe_infos" ("infoid" INTEGER, "itemid" INTEGER, "specialid" INTEGER, "moduletype" INTEGER) ;CREATE UNIQUE INDEX "primarykey" ON "pe_infos" ("infoid") ;CREATE INDEX "infoid" ON "pe_infos" 阅读全文