mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
9 lines
287 B
SQL
9 lines
287 B
SQL
CREATE OR ALTER PROCEDURE dbo.USP_GetBreweryById @BreweryPostID UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SELECT *
|
|
FROM BreweryPost bp
|
|
INNER JOIN BreweryPostLocation bpl
|
|
ON bp.BreweryPostID = bpl.BreweryPostID
|
|
WHERE bp.BreweryPostID = @BreweryPostID;
|
|
END |