what kind of functions can we perfecrn using a SQL on a data base?
Answers
Answered by
1
Answer:
Functions can be used anywhere in SQL, like AVG, COUNT, SUM, MIN, DATE and so on with select statements. Functions compile every time. Functions must return a value or result.
Answered by
6
Answer:
Scalar Functions (Returns A Single Value)
Inline Table Valued Functions (Contains a single TSQL statement and returns a Table Set)
Multi-Statement Table Valued Functions (Contains multiple TSQL statements and returns Table Set)
Similar questions