Select Query In SQL | SQL Tutorial - 3 | In Hindi 2021
Hello and Welcome In this vedio i will show you how can you use select query in sql.. With basic Defination and with basic syntax
#select #sql #tutorial #statement #mysql
Select is the most commonly used statement in SQL. The SELECT Statement in SQL is used to retrieve or fetch data from a database. We can fetch either the entire table or according to some specified rules. The data returned is stored in a result table. This result table is also called result-set.
With the SELECT clause of a SELECT command statement, we specify the columns that we want to be displayed in the query result and, optionally, which column headings we prefer to see above the result table.
The select clause is the first clause and is one of the last clauses of the select statement that the database server evaluates. The reason for this is that before we can determine what to include in the final result set, we need to know all of the possible columns that could be included in the final result set.
Sample Table:tableBasic Syntax:
SELECT column1,column2 FROM table_name
column1 , column2: names of the fields of the table
table_name: from where we want to fetch
This query will return all the rows in the table with fields column1 , column2.
To fetch the entire table or all the fields in the table:
SELECT * FROM table_name;
Query to fetch the fields ROLL_NO, NAME, AGE from the table Student:
SELECT ROLL_NO, NAME, AGE FROM Student;
Output:
ROLL_NO NAME Age
1 Ram 18
2 RAMESH 18
3 SUJIT 20
4 SURESH 18
To fetch all the fields from the table Student:
SELECT * FROM Student;
Output:
ROLL_NO NAME ADDRESS PHONE Age
1 Ram Delhi XXXXXXXXXX 18
2 RAMESH GURGAON XXXXXXXXXX 18
3 SUJIT ROHTAK XXXXXXXXXX 20
4 SURESH Delhi XXXXXXXXXX 18
**************check Out My Previous Vedio************************
How to send mail in PHP from localhost using XAMPP server with Source Code in 2021 = https://youtu.be/gKXecug67WY
Animated Login Form in HTML CSS = https://youtu.be/Z_9p49VKsZg
How to Encrypt and Decrypt Password in PHP = https://youtu.be/IN4v4FM1GG8
Hide And Show Button In JavaScript = https://youtu.be/N6lJBEX-vg8
Guys, Please support my channel by SUBSCRIBE to my channel and share my videos in your Social Network TimeLines.
Github Link Source Code = https://github.com/ravisingh2811/Contact-us-page-.git
Do Follow my github Link and social media Link To connect with me
Github Link = https://github.com/ravisingh2811
Instagram Link = https://www.instagram.com/mr.ravisingh28
Facebook = https://www.facebook.com/profile.php?id=100011478922030
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Select Query In SQL | SQL Tutorial - 3 | In Hindi 2021», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.