摘要: 新增INSERT INTO A (列名1, 列名2) VALUES (列1的值, 列2的值);查询select * from 表名;删除delete from test.A where 条件表达式修改update test.A set id_no=5 where grade=156421.0 update test.A set id_no=6,grade=grade*2 where grade=156421.0 清空表数据TRUNCATE TABLE 表名 添加主键ALTER TABLE 表名 ADD PRIMARY KEY (列名[,列名]) 去除主键ALTER ... 阅读全文
posted @ 2013-07-30 11:34 hhhyde 阅读(114) 评论(0) 推荐(0) 编辑