1
0
mirror of https://github.com/bitwarden/server synced 2025-12-28 22:23:30 +00:00
Files
server/src/Sql/dbo/Stored Procedures/Organization_ReadByEnabled.sql
2017-08-22 15:27:29 -04:00

12 lines
182 B
Transact-SQL

CREATE PROCEDURE [dbo].[Organization_ReadByEnabled]
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[OrganizationView]
WHERE
[Enabled] = 1
END