Przykład procedur składowanych
SELECT
customerName,
city,
state,
postalCode,
country
FROM
customers
ORDER BY customerName;
Code language: SQL (Structured Query Language) (sql)
Weary Wolverine