Computer Science, asked by shahbazalam987p65ymd, 1 year ago

What are the rules for naming the procedure?​

Answers

Answered by kanishk0011
12

Hello,

Here is your answer,

JavaScript has only a few rules for variable names: The first character must be a letter or an underscore (_). You can't use a number as the first character. The rest of the variable name can include any letter, any number, or the underscore.

Hope it helps you

Answered by StaceeLichtenstein
6

Following are the rules for naming the procedure is given below.

Explanation:

  • Use the following syntax usp_ <tablename><action name>
  • The usp_ is a predefined keyword that are used to declaring the procedure .
  • The table-name specify the name of the table .
  • The action name specify the what action you perform on creating the procedures .

For example :

  • usp_Emp_Insert
  • usp_Emp_delete

Learn More :

  • brainly.in/question/3279020
Similar questions