Ask Question

Calculated fields can be entered in queries. What row should you type a calculated field in?

Field row (first row)

Table row

Totals row

Criteria row

+2
Answers (1)
  1. 20 November, 04:21
    0
    Computed columns in SQL are calculated columns where the value of the column will be automatically inserted according to the formula specified.

    Suppose Net salary = Gross_salary - PF, so this can be created as,

    Create table Employee (empno, empname, Basic, HRA, PF, Gross_Sal = Basic+HRA, Net_salary = Gross_salary-PF)

    When you query Select * from Employee, all the fields along with the calculated column values will get displayed. Even if you update on the field, changes will be automatically done in calculated column.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Calculated fields can be entered in queries. What row should you type a calculated field in? Field row (first row) Table row Totals row ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers