2018年4月10日
摘要: SQL DELETE 语句详解 DELETE 语句 DELETE 语句用于删除表中的行。 语法 DELETE FROM 表名称 WHERE 列名称 = 值 Person: LastNameFirstNameAddressCity Gates Bill Xuanwumen 10 Beijing Wil 阅读全文
posted @ 2018-04-10 16:32 幽love梦费重寻 阅读(343) 评论(0) 推荐(0) 编辑
摘要: SQL Update 语句详解 Update 语句 Update 语句用于修改表中的数据。 语法: UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值 Person: LastNameFirstNameAddressCity Gates Bill Xuanwumen 10 阅读全文
posted @ 2018-04-10 15:09 幽love梦费重寻 阅读(5130) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Data;using System.Data.SQLite;using System.IO;using System.Linq;using System.Text; namespac 阅读全文
posted @ 2018-04-10 09:43 幽love梦费重寻 阅读(813) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Data;using System.Data.SQLite;using System.IO;using System.Linq;using System.Text; namespac 阅读全文
posted @ 2018-04-10 09:35 幽love梦费重寻 阅读(41) 评论(0) 推荐(0) 编辑