No video

81 What is a view in sql server | Create view in SQL Server

  Рет қаралды 570

Learn SSIS

Learn SSIS

Күн бұрын

Пікірлер: 10
@user-df1kb7th3v
@user-df1kb7th3v 4 ай бұрын
Wonderful explanation as usual Aqil sir
@learnssis
@learnssis 4 ай бұрын
Thank you Sir.
@Chsurendra556
@Chsurendra556 4 ай бұрын
Hi Aqil nice explanation. Please make a video on Execution plan in sql server.
@learnssis
@learnssis 4 ай бұрын
Yeah, I will cover all topics in SQL server development. Stay tuned for more videos.
@neelamkushwah1079
@neelamkushwah1079 4 ай бұрын
Hlo sir interviewer asked me this question and say do this in store procedure (Create a table if it doesnt exist - details of employee table, designation - set 'higher management where sal>50LPA) please tell how to write query
@learnssis
@learnssis 4 ай бұрын
Hi Neelam, this is the query for this. For these simple questions, you can use chatgpt as well. It can help you to write the sql queries for a very wide variety of requirements. create proc sp_UpdateDesignation as begin IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Employee]') AND type in (N'U')) CREATE TABLE [dbo].[Employee]( [id] [int] NULL, [first_name] [varchar](50) NULL, [last_name] [varchar](50) NULL, Salary money NULL, designation [varchar](50) NULL ) ON [PRIMARY] update [Employee] set designation = 'higher management' where Salary > 5000000 end
@neelamkushwah1079
@neelamkushwah1079 4 ай бұрын
@@learnssis ok thank you sir I will do it myself.
@user-gq7of3bz8h
@user-gq7of3bz8h 3 ай бұрын
Sir please make video on ssis pakage in vs code ..hiw it works
@learnssis
@learnssis 3 ай бұрын
Sorry did not get you.
82 Working with views in sql server
8:54
Learn SSIS
Рет қаралды 422
87 How to find duplicate records in a sql server table
7:16
Meet the one boy from the Ronaldo edit in India
00:30
Younes Zarou
Рет қаралды 19 МЛН
Magic? 😨
00:14
Andrey Grechka
Рет қаралды 20 МЛН
156 How to change excel column to numeric in ssis
23:59
Learn SSIS
Рет қаралды 807
PayPal SQL Interview Question
7:01
Code-Con
Рет қаралды 708
86 What is a non clustered index in sql server
5:47
Learn SSIS
Рет қаралды 374
Why High Performers Might Be Hurting Your Team
6:42
Simon Sinek
Рет қаралды 2 М.
How to migrate data from SnowFlake to SQL Server using SSIS
18:26
Choosing Between Views, Functions, and Stored Procedures in SQL With Examples
13:51
Hands On Coding Tutorials
Рет қаралды 45 М.
158 Migrate data from access to sql server using ssis
12:49