English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Usage and Examples of SQL EXEC Keyword

SQL Keyword Reference

EXEC

The EXEC command is used to execute stored procedures.

The following SQL executes the stored procedure named 'SelectAllCustomers':

  EXEC SelectAllCustomers;

SQL Keyword Reference