Translate

Wednesday, 24 May 2017

SQL : common table expression(cte)

;with cte_demo
as
(
select * from emp where EmpSal>=10000
) select * from cte_demo

No comments:

Post a Comment