<p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-e06b9a4ac899dae7.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>sqlite</p><p>在《嵌入式数据库sqlite3命令操作基础篇-增删改查,小白一文入门》一文中讲解了如何实现sqlite3的基本操作增删改查,本文介绍一些其他复杂一点的操作。比如where、order by、having、like、函数等用法。</p><h1>数据库准备</h1><p>新建数据库,company.db。
设计一个表格employee,内容如下:</p><p>idnameagedepsalary1马云21market60002马化腾22tech70003李彦宏23trs86004张朝阳24trs60005罗永浩26tech89006王欣25market4000</p><p class="image-package">根据上述表格,我们首先确定主键是id。
创建表格命令如下:</p><pre>CREATE TABLE employee(id integer primary key, name text,age integer , dep text, salary integer);</pre><pre>insert into employee values (1,'马云',21,'market',6000);insert into employee values (2,'马化腾',22,'tech',7000);insert into employee values (3,'李彦宏',23,'trs',8000);insert into employee values (4,'张朝阳',24,'trs',6000);insert into employee values (5,'罗永浩',26,'tech',8900);insert into employee values (6,'王欣',25,'market',4000);insert into employee values (7,'一口',18,'market',4000);</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-fd677828ed5392ad.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-876bb7b744c23836.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><h1>order子句</h1><p>我们可以使用order子句实现对记录的排序:</p><pre>select from employee order by age;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-4a80f72deec4881e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><h1>Where 子句与逻辑运算符</h1><p>SQLite的 WHERE 子句用于指定从一个表或多个表中获取数据的条件。
如果满足给定的条件,即为真(true)时,则从表中返回特定的值。您可以使用 WHERE 子句来过滤记录,只获取需要的记录。
WHERE 子句不仅可用在 SELECT 语句中,它也可用在 UPDATE、DELETE 语句中,等等,这些我们将在随后的章节中学习到。</p><p/><p>SQLite 的带有 WHERE 子句的 SELECT 语句的基本语法如下:</p><pre>SELECT column1, column2, columnN FROM table_name WHERE [condition]</pre><p/><p>您还可以使用比较或逻辑运算符指定条件,比如 >、<、=、>=,<= ,LIKE、NOT,等等。</p><p>下面的实例演示了 SQLite 逻辑运算符的用法。</p><p><strong>下面的 SELECT 语句列出了 AGE 大于等于 25 且工资大于等于 65000.00 的所有记录:</strong></p><pre> SELECT FROM EMPLOYEE WHERE AGE >= 25 AND SALARY >= 6500;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-8e7429fc5bd19457.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>下面的 SELECT 语句列出了 AGE 大于等于 25 或工资大于等于 65000.00 的所有记录:</strong></p><p>SELECT * FROM EMPLOYEE WHERE AGE >= 25 OR SALARY >= 65000;</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-5453ac0b11d53ddd.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>下面的 SELECT 语句列出了 AGE 不为 NULL 的所有记录,结果显示所有的记录,意味着没有一个记录的 AGE 等于 NULL:</strong></p><pre>SELECT FROM EMPLOYEE WHERE AGE IS NOT NULL;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-ed97412d9465bde9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>where子句还可以配合like子句一起使用。<strong>下面的 SELECT 语句列出了 NAME 以 'Ki' 开始的所有记录,'Ki' 之后的字符不做限制:</strong></p><pre>SELECT FROM EMPLOYEE WHERE NAME LIKE '马%';</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-2c914c4e398cbba2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/><strong>下面的 SELECT 语句列出了 AGE 的值为 22 或 25 的所有记录:</strong></p><pre>SELECT FROM EMPLOYEE WHERE AGE IN ( 22, 25 );</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-608f6bc4dc75db9f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>下面的 SELECT 语句列出了 AGE 的值既不是 25 也不是 27 的所有记录:</strong></p><pre>SELECT FROM EMPLOYEE WHERE AGE NOT IN ( 22, 25 );</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-76e712b7204006e0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>下面的 SELECT 语句列出了 AGE 的值在 22 与 25 之间的所有记录:</strong></p><pre>SELECT FROM EMPLOYEE WHERE AGE BETWEEN 22 AND 25;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-ea686a17bfb23998.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><h1>group by子句</h1><p>GROUP BY 语句用于结合聚合函数,根据一个或多个列对结果集进行分组。
举例:</p><p><strong>统计整个公司工资总和:</strong></p><pre>select sum(salary) from employee;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-05bf08712d03809a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>统计每个部门的工资总和:</strong></p><pre>select dep, sum(salary) from employee group by dep;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-f7b9ed442248d55a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/><strong>统计各部门的工资总和并且要求id值大于3</strong></p><pre>select dep, sum(salary) from employee where id>3 group by dep; where子句要放在group by的前面。</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-3c98d982580a6610.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>having子句是group by的条件子句,where子句先发生,然后才是having 子句执行。
HAVING子句中能够使用三种要素:常数,聚合函数,GROUP BY子句中指定的列名(聚合建),
用having就一定要和group by连用, 用group by不一有having(它只是一个筛选条件用的)</p><p/><p><strong>统计各部门的工资总和并且要求id值大于3</strong></p><pre>select dep, sum(salary) from employee where id>3 group by dep having sum(salary)>5000;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-0b099b1cbc2ae2b7.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/><strong>查找重复记录的方法</strong></p><p>我们先插入依据名字相同的记录。</p><pre>insert into employee values (8,'一口',19,'market',5000);select id,name from employee group by name having count() > 1;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-a6896b40498c771a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>可以看到,结果显示了相同名字的重复记录。</p><p><strong>显示名字相同的多项</strong></p><pre>select id,name,dep,salary from employee group by name having count() > 1;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-942784fdf0fe1cb6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/><strong>显示table中所有的记录</strong></p><pre>select count() from employee;</pre><p><strong>显示所有记录的个数</strong></p><pre>select dep,avg(salary) from employee group by dep;</pre><p><strong>显示dep下每一组的平均值</strong></p><pre>select from employee where id > 3 intersect select from employee where id < 9;</pre><p><strong>显示id > 3 && id < 9 的所有记录:即4 - 8 的记录</strong></p><pre>select from employee where id > 3 union all select from employee where id < 9;</pre><p><strong>显示所有的大于3并且小于9的,并集(如果有相同的,会重复显示)</strong></p><pre>select from studentnew where id > 3 union all select from studentnew where id < 9;</pre><p><strong>显示大于9的记录</strong></p><pre>select from employee where id > 3 union all select from studentnew where id < 6;</pre><p><strong>显示大于6的记录,(与上一个进行比较)</strong></p><pre>select from employee where salary= (select salary from employee order by salary desc limit 1);select from employee where salary= (select max(salary) from employee );</pre><p><strong>显示最高工资的所有员工的记录</strong></p><pre>select name,max(salary) from employee;</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-60c835179f332dd0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>显示table中名字不相同的员工;</strong></p><pre>select distinct name from employee;</pre><p><strong>显示所有员工的名字;</strong></p><pre> select all name from employee;</pre><h1>函数</h1><p>SQLite 有许多内置函数用于处理字符串或数字数据。下面列出了一些有用的 SQLite 内置函数,且所有函数都是大小写不敏感,这意味着您可以使用这些函数的小写形式或大写形式或混合形式。
欲了解更多函数的说明,可以参考 SQLite 的官方文档,下面列举常用的一些函数</p><p>序号函数& 描述1.COUNTSQLite COUNT 聚集函数是用来计算一个数据库表中的行数。2.MAXSQLite MAX 聚合函数允许我们选择某列的最大值。3.MINSQLite MIN 聚合函数允许我们选择某列的最小值。4.AVGSQLite AVG 聚合函数计算某列的平均值。5.SUMSQLite SUM 聚合函数允许为一个数值列计算总和。6.RANDOMSQLite RANDOM 函数返回一个介于 -9223372036854775808 和 +9223372036854775807 之间的伪随机整数。7.ABSSQLite ABS 函数返回数值参数的绝对值。8.UPPERSQLite UPPER 函数把字符串转换为大写字母。9.LOWERSQLite LOWER 函数把字符串转换为小写字母。10.LENGTHSQLite LENGTH 函数返回字符串的长度。11.sqlite_versionSQLite sqlite_version 函数返回 SQLite 库的版本。</p><p/><p>SQLite COUNT 聚集函数是用来计算一个数据库表中的行数。下面是实例:</p><pre>SELECT count() FROM EMPLOYEE ;</pre><p>执行结果:</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-0b196e45d58a4a1d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>SQLite MAX 聚合函数允许我们选择某列的最大值。下面是实例:</p><pre>SELECT max(salary) FROM EMPLOYEE ;</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-d93a3666af887c4f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p>SQLite MIN 聚合函数允许我们选择某列的最小值。下面是实例:</p><pre>SELECT min(salary) FROM EMPLOYEE ;</pre><p>执行结果:</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-708dd1a3dbee3ea6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>SQLite AVG 聚合函数计算某列的平均值。下面是实例:</p><pre>SELECT avg(salary) FROM EMPLOYEE ;</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-91e86bc2cab71606.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p>SQLite SUM 聚合函数允许为一个数值列计算总和。下面是实例:</p><pre>SELECT sum(salary) FROM EMPLOYEE ;</pre><p>执行结果:</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-5b24b2682ef00abf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>SQLite RANDOM 函数返回一个介于 -9223372036854775808 和 +9223372036854775807 之间的伪随机整数。下面是实例:</p><pre>SELECT random() AS Random;</pre><p>执行结果:</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-977b0eda1640a191.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>SQLite ABS 函数返回数值参数的绝对值。下面是实例:</p><pre>SELECT abs(5), abs(-15), abs(NULL), abs(0), abs("ABC");</pre><p>执行结果:</p><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-efef320dea86ccf6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p/><p>SQLite UPPER 函数把字符串转换为大写字母。下面是实例:</p><pre>insert into employee values (9,'yikoulinux',22,'market',8000);SELECT upper(name) FROM EMPLOYEE ;</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-32d1b0b61881b9c2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p>SQLite LOWER 函数把字符串转换为小写字母。下面是实例:</p><pre>SELECT lower(name) FROM EMPLOYEE ;</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-89acc155375cbcbf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p>SQLite LENGTH 函数返回字符串的长度。下面是实例:</p><pre>SELECT name, length(name) FROM EMPLOYEE ;</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-31e783be46539dc1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p>SQLite sqlite_version 函数返回 SQLite 库的版本。下面是实例:</p><pre>SELECT sqlite_version() AS 'SQLite Version';</pre><p class="image-package">执行结果:<img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-4c380f40492e971a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/></p><p/><p/><p>datetime() 产生日期和时间 无参数表示获得当前时间和日期</p><pre>select datetime();</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-3d5685953090136e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>在这里插入图片描述</p><p><strong>有字符串参数则把字符串转换成日期</strong></p><pre>select datetime('2012-01-07 12:01:30');</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-7cc8cd7591131fd8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>2012-01-07 12:01:30</p><pre>select date('2019-09-09','+1 day','+1 year');</pre><p class="image-package"><img class="uploaded-img" src="https://upload-images.jianshu.io/upload_images/23850874-1e1d3f5795139beb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" width="auto" height="auto"/>2013-01-09</p><pre>select datetime('2019-09-09 00:20:00','+1 hour','-12 minute');</pre><p>2019-09-09 01:08:00</p><pre>select datetime('now','start of year');</pre><p>2020-01-01 00:00:00</p><pre>select datetime('now','start of month');</pre><p>2020-09-01 00:00:00</p><pre>select datetime('now','start of day');</pre><p class="image-package">2020-09-13 00:00:00</p><pre>select datetime('now','localtime');</pre><p>结果:2020-09-12 20:26:35</p><p/><p>date()用于产生日期</p><pre>select date('2019-09-09 12:01:30');</pre><p>2019-09-09</p><pre>select date('now','start of year');</pre><p>2020-01-01</p><pre>select date('2019-09-09','+1 month');</pre><p>2019-10-09</p><p/><p class="image-package">time() 用于产生时间。</p><pre>select time();</pre><p>03:28:49</p><pre>select time('23:18:59');</pre><p>23:18:59</p><pre>select time('23:18:59','start of day');</pre><p>00:00:00</p><p>在时间/日期函数里可以使用如下格式的字符串作为参数:</p><ul><li><p>YYYY-MM-DD</p></li><li><p>YYYY-MM-DD HH:MM</p></li><li><p>YYYY-MM-DD HH:MM:SS</p></li><li><p>YYYY-MM-DD HH:MM:SS.SSS</p></li><li><p>HH:MM</p></li><li><p>HH:MM:SS</p></li><li><p>HH:MM:SS.SSS</p></li><li><p>now</p></li></ul><p>其中now是产生现在的时间。</p><p>日期不能正确比较大小,会按字符串比较,日期默认格式 dd-mm-yyyy</p><p/><p>strftime() 对以上三个函数产生的日期和时间进行格式化。</p><p>strftime()函数可以把YYYY-MM-DD HH:MM:SS格式的日期字符串转换成其它形式的字符串。
strftime(格式, 日期/时间, 修正符, 修正符, …)</p><p>它可以用以下的符号对日期和时间进行格式化:</p><pre>%d 在该月中的第几天, 01-31 %f 小数形式的秒,SS.SSS %H 小时, 00-23 %j 算出某一天是该年的第几天,001-366 %m 月份,00-12 %M 分钟, 00-59 %s 从1970年1月1日到现在的秒数 %S 秒, 00-59 %w 星期, 0-6 (0是星期天) %W 算出某一天属于该年的第几周, 01-53 %Y 年, YYYY %% 百分号</pre><pre>select strftime('%Y.%m.%d %H:%M:%S','now');</pre><p class="image-package">2020.09.13 03:32:49</p><pre>select strftime('%Y.%m.%d %H:%M:%S','now','localtime');</pre><p>2020.09.12 20:33:24</p><h1>SELECT LIKE 用法</h1><p>在SQL结构化查询语言中,LIKE语句有着至关重要的作用。</p><p/><p>LIKE语句的语法格式是:</p><pre>select from 表名 where 字段名 like 对应值(子串),</pre><p>它主要是针对字符型字段的,它的作用是在一个字符型字段列中检索包含对应子串的。</p><ul><li><p>A):% 包含零个或多个字符的任意字符串:</p></li></ul><ol><li><p>LIKE'Mc%' 将搜索以字母 Mc 开头的所有字符串(如 McBadden)。</p></li><li><p>LIKE'%inger' 将搜索以字母 inger 结尾的所有字符串(如 Ringer、Stringer)。</p></li><li><p>LIKE'%en%' 将搜索在任何位置包含字母 en 的所有字符串(如 Bennet、Green、McBadden)。</p></li></ol><ul><li><p>B:_(下划线) 任何单个字符:LIKE'_heryl' 将搜索以字母 heryl 结尾的所有六个字母的名称(如 Cheryl、Sheryl)。</p></li><li><p>C:[ ] 指定范围 ([a-f]) 或集合 ([abcdef]) 中的任何单个字符:</p></li></ul><ol><li><p>LIKE'[CK]ars[eo]n' 将搜索下列字符串:Carsen、Karsen、Carson 和 Karson(如 Carson)。</p></li><li><p>LIKE'[M-Z]inger' 将搜索以字符串 inger 结尾、以从 M 到 Z 的任何单个字母开头的所有名称(如 Ringer)。</p></li></ol><ul><li><p>D:[^] 不属于指定范围 ([a-f]) 或集合 ([abcdef]) 的任何单个字符:LIKE'M[^c]%' 将搜索以字母 M 开头,并且第二个字母不是 c 的所有名称(如MacFeather)。</p></li><li><p>E:* 它同于DOS命令中的通配符,代表多个字符:cc代表cc,cBc,cbc,cabdfec等多个字符。</p></li><li><p>F:?同于DOS命令中的?通配符,代表单个字符 :b?b代表brb,bFb等</p></li><li><p>G:# 大致同上,不同的是代只能代表单个数字。k#k代表k1k,k8k,k0k 。</p></li><li><p>F:[!] 排除 它只代表单个字符</p></li></ul><p/><p>下面我们来举例说明一下:</p><ul><li><p>例1,查询name字段中包含有“明”字的。</p></li></ul><pre>select from table1 where name like '%明%'</pre><ul><li><p>例2,查询name字段中以“李”字开头。</p></li></ul><pre>select from table1 where name like '李'</pre><ul><li><p>例3,查询name字段中含有数字的。</p></li></ul><pre>select from table1 where name like '%[0-9]%'</pre><ul><li><p>例4,查询name字段中含有小写字母的。</p></li></ul><pre>select from table1 where name like '%[a-z]%'</pre><ul><li><p>例5,查询name字段中不含有数字的。</p></li></ul><pre>select from table1 where name like '%[!0-9]%'</pre><p>以上例子能列出什么值来显而易见。但在这里,我们着重要说明的是通配符“”与“%”的区别。
很多朋友会问,为什么我在以上查询时有个别的表示所有字符的时候用"%"而不用“”?先看看下面的例子能分别出现什么结果:</p><pre>select from table1 where name like '明'select from table1 where name like '%明%'</pre><p>大家会看到,前一条语句列出来的是所有的记录,而后一条记录列出来的是name字段中含有“明”的记录,所以说,当我们作字符型字段包含一个子串的查询时最好采用“%”而不用“”,用“”的时候只在开头或者只在结尾时,而不能两端全由“”代替任意字符的情况下。</p><p>SQLITE数据库的操作,暂告一段落,虽然是轻量级数据库,但是数据库的操作基本思想是一致的,基本上是学一通百,下一章,我们来学习如何通过c语言程序来操作数据库。</p><p>更多Linux相关的知识,请关注公众号 有Linux</p><p>
</p>
嵌入式数据库sqlite3【进阶篇】-子句和函数的使用,小白一文入门
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...