控制器(controller)页面 use \yii\data\Pagination; //引入这个类 public function actionList(){ $data = Clock::find()->select('*')->innerJoin('user','clock.user_id=user.id'); //联查 $pages = new Pagination(['totalCount'=>$data->count(),'pageSize'=>3]); $re…
(1)存储过程建立 USE [NewPlat] GO /****** Object: StoredProcedure [dbo].[usp_PagingLarge] Script Date: 07/11/2013 08:27:44 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO Create PROCEDURE [dbo].[usp_PagingLarge] @TableNames VARCHAR(200), --…
一.基础实体 @MappedSuperclass public abstract class AbsIdEntity implements Serializable { private static final long serialVersionUID = 7988377299341530426L; public final static int IS_DELETE_YES = 1;// 标记删除 public final static int IS_DELETE_NO = 0;// 未删除,…
多表联查: select p.*,s.Sheng , i.Shifrom [dbo].[ProductRecordInfo] --表名 p left join [ShengInfo] s on p.ShengInfo = s.ShengId --使用left join左连接 让两个表中的指定字段产生连接关系left join [ShiInfo] i on p.ShiInfo = i.ShiId --使用left join左连接 让三个表中的指定字段产生连接关系 这里的…