mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-16 17:47:22 +00:00
11 lines
271 B
SQL
11 lines
271 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 |