What is the order in which the SQL query is executed? list
them in order.
Answer Posted / suraj
Though it's not so clear on what type of SQL query.
If we want to see in what order does the SELECT query
executes; it'l like this.
SELECT .........
FROM ..........
WHERE ..........
GROUP BY ...........
HAVING ............
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
How do I find sql server instance name?
How many clustered indexes can be created on a table? I create a separate index on each column of a table. what are the advantages and disadvantages of this approach?
What is an identity column in insert statements?
If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio
What are truncate options available in sql server? : sql server database administration
Explain insert into select statement?
what changed between the previous version of sql server and the current version? : Sql server database administration
Why transaction is important?
What keyword you will use to get schema appended to the result set of a ‘for xml’ query?
Explain the difference between primary keys and foreign keys?
Hi, I Created 3 Tables Person(PersID[prkey],Name,Email,Password), Project(ProjName,ProjID[prkey],ProjLeader,ProjManager) & ProjectInvolvement(EntryDate,ProjID[frkey],PersID[frkey],ProjDuration). For this how can i INSERT,UPDATE & DELETE Through PROCEDURE? Please Post the Answer for me. Desai.
What action plan is preferred if sql server is not responding?
Can sql servers linked to other servers?
Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?
How to create an index on a view?