SQL Server 2022 Installation
20:05
10 ай бұрын
Mysql Numeric Functions
19:02
Жыл бұрын
Пікірлер
@RahulRathod-d4p
@RahulRathod-d4p 5 күн бұрын
Thank you sir for wonderful explanations could please make the more video's on Windowing Clause like (function over the partitions),rank,dense rank,row_number ,rank,ntile,sum and average etc
@IshwarAcademy
@IshwarAcademy 5 күн бұрын
Soon, I will upload the videos.
@jatinverma623
@jatinverma623 6 күн бұрын
ans of last question select emp_id , emp_name , emp_salary , dept_name , dept_location from employee inner join depatrment on employee.emp_deptid = depatrment.dept_id where dept_id in (select dept_id from depatrment where dept_location = 'New york')
@sameeppoudel5305
@sameeppoudel5305 7 күн бұрын
Can i learn all the contents using php myadmin ?
@pavitrapandey3686
@pavitrapandey3686 9 күн бұрын
Can you please help me
@pavitrapandey3686
@pavitrapandey3686 9 күн бұрын
Hi sir when I am going to install I am facing the feature you are trying to use on network resources that is unavailable And next there mentioned enter a alternate path to a folder containing
@shivamKumar-by7ht
@shivamKumar-by7ht 10 күн бұрын
Sir ye 1 hi project h ya 6 alag alag ?
@IshwarAcademy
@IshwarAcademy 10 күн бұрын
1 project: start to end
@sourabhpatil3130
@sourabhpatil3130 17 күн бұрын
mssql ke interview question ki ek series banana bhi
@IshwarAcademy
@IshwarAcademy 17 күн бұрын
@@sourabhpatil3130 ye playlist me more than 150 questions covered hai, jo interview preparation me help karegi. kzbin.info/aero/PLysly0KYnAY2nz3js1uJ4KU-YQ7z2-IJJ&si=J1KULXdyeVvn_sOk
@anilkumarprajapati255
@anilkumarprajapati255 19 күн бұрын
Excellent video
@RahulKumar93555
@RahulKumar93555 20 күн бұрын
Nice
@saurabhsharma5782
@saurabhsharma5782 24 күн бұрын
very informative
@jadhavshubham2239
@jadhavshubham2239 27 күн бұрын
Bhai thanks yaaaaaar, ab thoda bohot dimag mai ghus raha hai, is video kp dekhne ke baad.
@IshwarAcademy
@IshwarAcademy 27 күн бұрын
Thank you
@vfact9655
@vfact9655 29 күн бұрын
Can you make a video on oracle free database administration course?
@IshwarAcademy
@IshwarAcademy 28 күн бұрын
This is Oracle database playlist SQL for Beginners: kzbin.info/aero/PLysly0KYnAY2q8cobbotVbn36XOskQR2F
@RushiLifts
@RushiLifts 29 күн бұрын
select empID AS 'Employee ID' , empName AS 'Employee Name' , empSalary AS 'Employee Salary' , empJob AS 'Employee Job', empPhone AS 'Employee Phone' , deptId AS 'Department ID' from employee_info where deptId = (select departId from department_info where departLocation = 'newyork');
@sohilqureshi1287
@sohilqureshi1287 Ай бұрын
Sir your content is very good but audio quality is very poor
@IshwarAcademy
@IshwarAcademy Ай бұрын
I appreciate your feedback. Audio quality is improved in other videos. Please watch them. Hope you'll enjoy and learn more
@readerisleader12
@readerisleader12 Ай бұрын
BEGIN DECLARE @Salary decimal; select @Salary =AVG(Salary) from Employees; select @Salary AS 'AVG.Salary'; If @Salary >80000 BEGIN PRINT 'AVERAGE salary is greater than 35000'; END ELSE IF @Salary>50000 BEGIN PRINT 'Average salary is between 50000 and 60000'; END ELSE IF @Salary >70000 BEGIN PRINT 'SALARY IS GRATER THAN AVERAGE'; END ELSE BEGIN PRINT 'salary is less than average'; END END is this correct?
@Ravikumar-ql4ge
@Ravikumar-ql4ge Ай бұрын
I was doing the same way as you do but it is showing Ambiguous error what does it mean..
@IshwarAcademy
@IshwarAcademy Ай бұрын
Please do check you're using a proper alias with a column name.
@abhishekjadhav2667
@abhishekjadhav2667 Ай бұрын
QUE-4 ---In SQL Server, to get the top N rows, you need to use OFFSET with FETCH. SELECT c.CustomerID, CONCAT(c.FirstName,' ',c.LastName),SUM(o.TotalAmount) AS TotalSpent FROM Customers c join Orders o ON c.CustomerID = o.CustomerID GROUP BY c.CustomerID, CONCAT(c.FirstName,' ',c.LastName) ORDER BY TotalSpent DESC OFFSET 0 ROWS FETCH FIRST 5 ROW ONLY;
@bhagwatchauhan8317
@bhagwatchauhan8317 Ай бұрын
sir agar keval second or third salary print karana ho toh kya command hoga
@IshwarAcademy
@IshwarAcademy Ай бұрын
SELECT DISTINCT Salary FROM Employees ORDER BY Salary DESC OFFSET 1 ROW FETCH NEXT 2 ROWS ONLY;
@informationadda4422
@informationadda4422 Ай бұрын
permission denied error message coming while i am executing create database query
@amitk5074
@amitk5074 Ай бұрын
@21:31 in this way how doe the inserted data come from magic inserted table as u mention insert data ony avilable in insert magic table
@amitk5074
@amitk5074 Ай бұрын
Kindly provide videos on window function ur way teaching is extraordinary sir
@IshwarAcademy
@IshwarAcademy Ай бұрын
Thank you for the feedback. 😊 I will upload videos on the same very soon. Stay tuned by subscribing to my channel
@prakharsharma7520
@prakharsharma7520 Ай бұрын
Hi sir, below query is correct-- --Query 5: Retrieve the most popular product category SELECT Top 1 CategoryName,c.Categoryid, sum(quanity) as totalsales from OrderItems as o; join Products as P on o.ProductID=p.ProductID join Categories as c on p.CategoryID=c.CategoryID group by c.Categoryid,categoryname order by totalsales desc
@IshwarAcademy
@IshwarAcademy Ай бұрын
Please remove Semicolon (;).
@nibeditadas9942
@nibeditadas9942 2 ай бұрын
sir leetcod ke solution bhi btaoye
@IshwarAcademy
@IshwarAcademy Ай бұрын
Ok. Sure
@nibeditadas9942
@nibeditadas9942 2 ай бұрын
sir can you make videos on AWS and ML
@SwatiSwati-h5f
@SwatiSwati-h5f 2 ай бұрын
Voice is not clear
@Rityad162
@Rityad162 2 ай бұрын
SELECT E.EMP_NAME, E.EMP_SALARY FROM EMPLOYEE E LEFT JOIN DEPARTMENT D ON E.EMP_DEPTID=D.DEPT_ID WHERE D.DEPT_LOCATION = 'NEW YORK';
@Rityad162
@Rityad162 2 ай бұрын
SELECT * FROM EMPLOYEE WHERE EMP_DEPTID = (SELECT DEPT_ID FROM DEPARTMENT WHERE DEPT_LOCATION = 'NEW YORK' );
@chintandarji7893
@chintandarji7893 2 ай бұрын
SELECT EMP_ID, EMP_NAME, EMP_SALARY, EMP_DEPID,DEPT_NAME,DEPT_LOCATION FROM (SELECT * FROM EMPLOYEE E LEFT JOIN DEPARTMENT D ON E.EMP_DEPID = D.DEPT_ID WHERE D.DEPT_LOCATION = 'NEW YORK') t; used subquery, join and aliase
@thestorytym
@thestorytym 2 ай бұрын
I cannot download it on Mac, is there any alternatives?
@wasimkotwal1889
@wasimkotwal1889 2 ай бұрын
I would request you to kindly make video on long complex sql query for power bi or tableau requirement ..
@wasimkotwal1889
@wasimkotwal1889 2 ай бұрын
Excellent ...I really appreciate the way u explain in simple manner ...I have watch many videos to understand this , but finally my conclusion has been solved with your way of explaining ..I can say no will beat on KZbin for this ...really appreciated and thank you ...entire series was clearly capture apple to apple ..
@arvindkumargautam1707
@arvindkumargautam1707 2 ай бұрын
C lanvej
@chodipilliravikumar4459
@chodipilliravikumar4459 2 ай бұрын
Please share data file or CSV file
@chodipilliravikumar4459
@chodipilliravikumar4459 2 ай бұрын
Please send data file
@chodipilliravikumar4459
@chodipilliravikumar4459 2 ай бұрын
Hi sir
@merakamiputtar
@merakamiputtar 2 ай бұрын
I ❤ like your vedio apka samjany ka andaz bohat acha ha bhai
@Aakash-e8v8n
@Aakash-e8v8n 2 ай бұрын
hii @Ishwar i tried order by clause in my string values and it doesn't work on string values
@IshwarAcademy
@IshwarAcademy 2 ай бұрын
It should work.
@IshwarAcademy
@IshwarAcademy 2 ай бұрын
Can you type your query in this chat
@BarikulIslam-x8f
@BarikulIslam-x8f 2 ай бұрын
Tnx ❤❤❤
@Rahulpahadi307
@Rahulpahadi307 2 ай бұрын
15:03 category id ko references nhi kiya apne
@harshdubey901
@harshdubey901 2 ай бұрын
SIR IN QUERY 37 CAN WE DO LIKE THIS ? SELECT * FROM vw_RecentOrders ORDER BY OrderDate DESC;
@merakamiputtar
@merakamiputtar 2 ай бұрын
I like your working bro ❤
@harpreetkaur-lu8np
@harpreetkaur-lu8np 2 ай бұрын
i see a distorted screen in this video is that same for others?
@Datapassenger_prashant
@Datapassenger_prashant 2 ай бұрын
Bhai, thanks a lot, I was able to solve one SQL problem on hackerrank because of this video.. The blunder on hackerrank on ms SQL ssms Data type Money ❤
@deepnarayanroy5166
@deepnarayanroy5166 2 ай бұрын
Sir very nicely explained. One request- please make tutorial on SSIS.!
@IshwarAcademy
@IshwarAcademy 2 ай бұрын
I will plan
@KonkaM-z4z
@KonkaM-z4z 3 ай бұрын
sir question 4 (select c.customerID, c.FirstName, c.Lastname, sum(o.totalamount) as Totalamount from customers c join orders o on c.customerID = o.customerID group by c. firstName, c.Lastname order by Total amount desc LIMIT 5:) this is correct query for this question sir
@zayn1898
@zayn1898 3 ай бұрын
Sir is this project is good for resume?
@amankhare9358
@amankhare9358 3 ай бұрын
Can I make this project in snowflake
@Husnainkutail
@Husnainkutail 3 ай бұрын
Video link
@mosaleem3115
@mosaleem3115 3 ай бұрын
isko modify kese ker sakte hai
@gamyamentertainment4922
@gamyamentertainment4922 3 ай бұрын
can you speak loudly, then we can understand the word which you are saying. your voice is very low.
@IshwarAcademy
@IshwarAcademy 3 ай бұрын
Hi, Thank you for your feedback. I have maintained sufficient audio pitch for the video. Still, if you feel audio is low, I will improve in upcoming videos.