1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-17 09:35:39 -05:00
bitwarden/src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql
2020-06-22 09:36:40 -04:00

14 lines
228 B
Transact-SQL

CREATE PROCEDURE [dbo].[SsoConfig_ReadByIdentifier]
@Identifier NVARCHAR(50)
AS
BEGIN
SET NOCOUNT ON
SELECT TOP 1
*
FROM
[dbo].[SsoConfigView]
WHERE
[Identifier] = @Identifier
END