控制器中关键代码如下: // 查询状态为1的用户数据 并且每页显示10条数据 $list = Db::name('user')->where('status',1)->paginate(10); // 把分页数据赋值给模板变量list $this->assign('list', $list); // ...
分类:
其他好文 时间:
2020-07-03 17:11:12
阅读次数:
131
现在,Safari(技术预览版106)和Firefox(版本78)的预览版均支持新的CSS :is() 和 :where() 伪类。 Chrome的实施仍然落后。 使用 :is() 减少重复 你可以使用 :is() 伪类来删除选择器列表中的重复项。 /* BEFORE */ .embed .save ...
分类:
Web程序 时间:
2020-07-03 15:57:17
阅读次数:
93
1.where子句 where子句用于指定从一个表或多个表中获取数据的条件。如果满足给定的条件,即为真(true)时,则从表中返回特定的值。您可以使用 WHERE 子句来过滤记录,只获取需要的记录。WHERE 子句不仅可用在 SELECT 语句中,它也可用在 UPDATE、DELETE 语句中,等等 ...
分类:
数据库 时间:
2020-07-03 12:24:30
阅读次数:
65
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. Please note that the string ...
分类:
其他好文 时间:
2020-07-03 10:41:10
阅读次数:
59
查询表中所有数据 SELECT * FROM user; 查询表中某个字段的数据 SELECT username,id FROM user; where的使用 SELECT * FROM user WHERE id>10; SELECT * FROM user WHERE id=10; AND表示且 ...
分类:
数据库 时间:
2020-07-03 09:14:45
阅读次数:
86
常见的sql优化 1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如: select id from t where num is ...
分类:
数据库 时间:
2020-07-03 00:47:30
阅读次数:
62
select * from emp for update; select * from dept for update; select a.*,b.* from emp a left join dept b on a.deptno=b.deptno and a.deptno = 0 where b. ...
分类:
数据库 时间:
2020-07-02 22:01:50
阅读次数:
74
select case superguid when '0' then name else (select LISTAGG(name,'.') WITHIN GROUP(ORDER BY levelno) from busfw_t_dchead where tablecode = 'BDM_T_HC ...
分类:
数据库 时间:
2020-07-02 18:20:35
阅读次数:
57
情形一,有RMAN备份 1.构造坏块 SQL> select segment_name , header_file , header_block,blocks 2 from dba_segments where segment_name ='TESTC' and owner='SCOTT'; SEG ...
分类:
数据库 时间:
2020-07-02 16:38:57
阅读次数:
62
一、统计类 1.查询整个数据库下表内存 SELECT TABLE_NAME,ROUND(table_rows/10000,2) AS '数据总量(万条)',ROUND( (INDEX_LENGTH + DATA_LENGTH) / 1024 / 1024, 2 ) AS '总内存(MB)',ROUN ...
分类:
数据库 时间:
2020-07-02 16:03:36
阅读次数:
75