Create a table Salary with the following column and data and Write a query using above tables to display the Emp_no, name and net salary of each employee of a particular month
1. Create a table employee with following Column, Constraints and Data
2. Write SQL command to add a new column state in above table and insert the state name (BR,MP,UP, JH,BR,UP)respectively.
A simple query looks something like below
Select *
FROM Table1
Left join Table 2 on (Condition)
where
group by
order by
But what is the flow of execution of commands at the back-end?