All Downloads are FREE. Search and download functionalities are using the official Maven repository.

custom-sql.default.xml Maven / Gradle / Ivy

There is a newer version: 3.0.48
Show newest version
<?xml version="1.0"?>

<custom-sql>
	<sql id="com.liferay.sharing.service.persistence.SharingEntryFinder.countByUserId">
		<![CDATA[
			SELECT
				COUNT(*) AS COUNT_VALUE
			FROM
				SharingEntry
			WHERE
				SharingEntry.sharingEntryId IN
					(
						SELECT
							MAX(SharingEntry.sharingEntryId)
						FROM
							SharingEntry
						WHERE
							(SharingEntry.userId = ?) [$CLASS_NAME_ID_WHERE$]
						GROUP BY
							SharingEntry.classNameId, SharingEntry.classPK
					)
		]]>
	</sql>
	<sql id="com.liferay.sharing.service.persistence.SharingEntryFinder.findByUserId">
		<![CDATA[
			SELECT
				{SharingEntry.*}
			FROM
				SharingEntry
			WHERE
				SharingEntry.sharingEntryId IN
					(
						SELECT
							MAX(SharingEntry.sharingEntryId)
						FROM
							SharingEntry
						WHERE
							(SharingEntry.userId = ?) [$CLASS_NAME_ID_WHERE$]
						GROUP BY
							SharingEntry.classNameId, SharingEntry.classPK
					)
			ORDER BY
				SharingEntry.modifiedDate DESC
		]]>
	</sql>
</custom-sql>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy