Create a query that displays the employees' last names and commision amounts.If an employee does not earn commmission, put "No Commission." Label the column COMM.
Latest Answer: we go for complex views when we want to display from two or more tables, using group cluase, or grouping, aggregate functions ...
Latest Answer: SQL Server provides both datatypes to store character information. For the most part the two datatypes are identical in how you would work with them within SQL Server or from an application. The difference is that nvarchar is used to store unicode data, ...
Latest Answer: Very Simple question! But should be explained a lot.Databse data is stored in data_file's of the databse. For every table's data some space from the data_files would be allocated. This space is known as data segment. Say, you have a table named EMP. There could ...
Write query for the following questions1. sql query for selecting alternate rows in a table2. sql query for deleting alternate rows in a table
1) how many number of tables we can join in join concepts?is there any limitation?i think its not...2) since joins and subqueries are used for same purpose , why we have two things.is there any need
On index why u need indexing ? where that is stroed and what u mean by schema object?for what purpose we are using view
Latest Answer: hii am shailendraits my opinionoracle is based on RDBMS. its follow the 10-11 rules in Dr. E.F.Codd but SQL Server is based on RDBMS. its follow the only 7-9 rules in Dr. E.F.Codd. ...
Latest Answer: declare @a varchar(1000),@tblname varchar(100),@b nvarchar(1000)declare @startcol int,@i int, @endcol intselect @startcol = 11, @endcol =13, @a='', @tblname = ''select @a = sc.name + ',' + @a from ...
Difference between decode and case.in which case we are using case and in which case we are using decode?with an example.
View page << Previous 4 5 6 7 [8] 9 10 11 12 13 Next >>

Go Top