SQL Learning 💻
الذهاب إلى القناة على Telegram
Learn SQL from Scratch! See also @C_codings, @Cpp_codings , @moreinfoaboutme
إظهار المزيدلم يتم تحديد البلدالتكنولوجيات والتطبيقات20 206
4 799
المشتركون
لا توجد بيانات24 ساعات
+127 أيام
+1530 أيام
جاري تحميل البيانات...
القنوات المماثلة
سحابة العلامات
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
ديسمبر '24
ديسمبر '24
+1
في 0 قنوات
نوفمبر '24
+1
في 0 قنوات
Get PRO
أكتوبر '24
+2
في 0 قنوات
Get PRO
سبتمبر '24
+19
في 0 قنوات
Get PRO
أغسطس '24
+88
في 0 قنوات
Get PRO
يوليو '240
في 0 قنوات
Get PRO
يونيو '240
في 0 قنوات
Get PRO
مايو '24
+4
في 0 قنوات
Get PRO
أبريل '24
+37
في 0 قنوات
Get PRO
مارس '24
+62
في 0 قنوات
Get PRO
فبراير '24
+16
في 0 قنوات
Get PRO
يناير '24
+12
في 0 قنوات
Get PRO
ديسمبر '23
+978
في 0 قنوات
Get PRO
نوفمبر '230
في 0 قنوات
Get PRO
أكتوبر '230
في 0 قنوات
Get PRO
سبتمبر '230
في 0 قنوات
Get PRO
أغسطس '230
في 0 قنوات
Get PRO
يوليو '230
في 0 قنوات
Get PRO
يونيو '230
في 0 قنوات
Get PRO
مايو '230
في 0 قنوات
Get PRO
أبريل '230
في 0 قنوات
Get PRO
مارس '230
في 0 قنوات
Get PRO
فبراير '230
في 0 قنوات
Get PRO
يناير '230
في 0 قنوات
Get PRO
ديسمبر '220
في 0 قنوات
Get PRO
نوفمبر '22
+147
في 0 قنوات
Get PRO
أكتوبر '22
+92
في 0 قنوات
Get PRO
سبتمبر '22
+165
في 0 قنوات
Get PRO
أغسطس '22
+182
في 0 قنوات
Get PRO
يوليو '22
+200
في 0 قنوات
Get PRO
يونيو '22
+217
في 0 قنوات
Get PRO
مايو '22
+226
في 0 قنوات
Get PRO
أبريل '22
+343
في 0 قنوات
Get PRO
مارس '22
+65
في 0 قنوات
Get PRO
فبراير '22
+147
في 0 قنوات
Get PRO
يناير '22
+235
في 0 قنوات
Get PRO
ديسمبر '21
+217
في 0 قنوات
Get PRO
نوفمبر '21
+206
في 0 قنوات
Get PRO
أكتوبر '21
+188
في 0 قنوات
Get PRO
سبتمبر '21
+224
في 0 قنوات
Get PRO
أغسطس '21
+199
في 0 قنوات
Get PRO
يوليو '21
+174
في 0 قنوات
Get PRO
يونيو '21
+197
في 0 قنوات
Get PRO
مايو '21
+130
في 0 قنوات
Get PRO
أبريل '21
+107
في 0 قنوات
Get PRO
مارس '21
+750
في 0 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 11 ديسمبر | 0 | |||
| 10 ديسمبر | 0 | |||
| 09 ديسمبر | 0 | |||
| 08 ديسمبر | 0 | |||
| 07 ديسمبر | 0 | |||
| 06 ديسمبر | 0 | |||
| 05 ديسمبر | 0 | |||
| 04 ديسمبر | 0 | |||
| 03 ديسمبر | 0 | |||
| 02 ديسمبر | +1 | |||
| 01 ديسمبر | 0 |
منشورات القناة
When assigning unique identifiers to rows based on a specified order, three key functions come into play: ROW_NUMBER, RANK, and DENSE_RANK.
Consider the following table:
| Name | Score |
|-------- |-------|
| Alice | 90 |
| Bob | 90 |
| Carol | 85 |
| David | 78 |
ROW_NUMBER:
The simplest of the three, ROW_NUMBER assigns a unique number to each row based on the specified order. Each row receives a distinct identifier, incrementing by one.
Example:
1 2 3 4RANK: Assigns unique numbers, and in the case of ties, rows get the same rank, and the next rank is skipped.
1 1 3 4DENSE_RANK: Assigns ranks to rows with tied values, without skipping the next rank
1 1 2 3These functions help in organizing and analyzing data by providing distinct identifiers or ranks based on specified criteria. The example table illustrates how ROW_NUMBER, RANK, and DENSE_RANK operate in assigning order to rows with varying scores. (Note: This is 1/3 of the total number of articles; others are coming soon.)
| 2 | Here's a snippet of code written in C:
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
//some operation
}
}
How can I write something equivalent in SQL?
Solution:Alias
say, you are asked to count the frequency of each color occurring in the same table , so you can write something like this:
select distinct color ,(select count(*) from colors where c.color=color) from colors c; | 8 271 |
| 3 | https://dataengineeringacademy.medium.com/5-sql-queries-every-data-engineer-scientist-should-know-d68261167f1a | 6 723 |
| 4 | Solved_sql_sheet.pdf | 3 579 |
| 5 | Sql_cheatsheet.pdf | 986 |
| 6 | https://towardsdatascience.com/mysql-vs-postgresql-3d48891452a | 1 183 |
| 7 | https://play.google.com/store/apps/details?id=com.sololearn.sql
If you are starting with SQL and wish to code the queries as you learn more about SQL , Sololearn is perfect place for you. | 2 829 |
| 8 | https://www.udemy.com/course/the-complete-sql-course-2020-become-a-mysql-master/?couponCode=SQLCOURSE29
Get this course for free.
Just two days before it expires. | 3 835 |
| 9 | لا يوجد نص... | 4 540 |
| 10 | You are given this database, your task is to output➡ | 4 132 |
| 11 | Write a sql query to find the Joining date of Employee in YYYY-DAY-Date format. | 3 838 |
| 12 | Write a sql query to delete duplicate rows from a table. | 3 639 |
| 13 | Write a sql query to find the second largest number from table table_name and column number. | 3 503 |
| 14 | SQL.pdf | 3 553 |
| 15 | https://www.techonthenet.com/sql_server/functions/index.php | 3 401 |
| 16 | http://www-db.deis.unibo.it/courses/TW/DOCS/w3schools/sql/sql_functions.asp.html | 3 170 |
| 17 | https://docs.microsoft.com/en-us/sql/t-sql/lesson-1-creating-database-objects?view=sql-server-ver15
Start your tutorial here | 2 987 |
| 18 | Find the Employees who hired in the Last n months. Write a SQL query for that.
Send your queries in the discussion group. | 2 709 |
| 19 | Through this you can access a very good course on SQL for FREE. | 2 958 |
| 20 | Hey everyone ! Been a long since I posted anything. I realised that providing all the details here is meaningless as there are many better resources out there !
Keeping that in mind
Here's something for you
To minimize the impact of coronavirus outbreak on students, Progate (an online coding learning platform from Japan) has shared free access to their learning platform for all students until *30th April 2020*.
You can utilize this time at home by learning new tech skills. This will not only help you to strengthen your programming skills but will also allow you to prepare for interviews and placements.
This access includes 14 detailed online lessons of Python, Go, SQL, Command-Line and Git.
*STEPS TO ACTIVATE YOUR ACCESS:*
1) Create your free account on progate.com
2) Open this link and click the 'Join' button: bit.ly/progatespecialaccessduetocovid19
3) Open bit.ly/progatespecialaccess from a laptop/desktop and select the language | 2 947 |
