-- CREATE TABLE Test (ip text ,port int,name text) -- 创建表格 -- drop table Test -- 删除表格 -- insert into Test(ip,port,name)values('127.0.0.1',6080,'Test 1') -- 插入语法 -- delete from Test where port=8060 删除数据