
Explain why subtitles are on by default and how to deactivate them via the hof control, noting subtitles improve video clarity and training.
Explore beginner-friendly SQL concepts by learning to create a database, define a table, and insert data, while understanding basic transactions. Demonstrations and exercises with end-of-module corrections reinforce the learning.
Definition of SQL Server outlines creating, modifying, and selecting data with data manipulation language, and introduces DCL for user permissions; notes it is not case sensitive.
Learn to set up SQL server developer edition and SQL server management studio, download two companion apps, install the database engine, and begin creating databases and tables.
Install sql server on a Windows 10 machine using a basic setup, accept terms, configure a new instance with a service account, and review the server options before completing.
Install and launch the management studio on Windows, download all components, and connect to the server to begin mastering SQL queries.
Launch the management studio, connect to your database, and explore the left pane. Create databases and open a new query to write and execute sql.
Centralize scattered data into a single database to store, retrieve, and query information efficiently, enabling easier data organization and management.
Create a SQL Server database using two methods: a graphical interface and a script, by connecting to the server, naming the database, and executing the create command.
Learn to delete and rename a database using SQL commands and graphical methods, including rename operations, executing commands, and verifying changes by refreshing the list.
Engage with a database exercise from the SQL course, tackling questions about renaming to exercise two and preparing after this exercise, with guidance and good luck.
Learn to create a database named exercise, rename it using alter, and drop it, illustrating end-to-end database creation, modification, and deletion with practical queries.
Learn the basics of tables in a database management system, including rows and columns, how data records are structured, and the syntax for creating a table.
Learn to create a table in the current database, name it, and define two columns with proper comma placement and parentheses to execute the query successfully.
Demonstrates how to modify a table in SQL, including renaming and dropping a table, executing commands, and refreshing the database.
practice sql by answering two questions: create a simple table with specified columns, and then create a second table and delete it.
Review the corrected exercise on the table, study the solution, and reinforce SQL syntax, queries, and column data types.
Demonstrate inserting data with the insert into syntax in SQL, including single and multiple values into a table, and explore basic rules for values and columns during insertion.
Explore the select statement to query and filter data, choosing all columns or specific fields like first name and nickname, using the right database.
Demonstrates the update statement in SQL, showing syntax, setting new values, and using where to affect specific rows while centralizing data.
Explore the delete statement in SQL through a step-by-step demo, covering delete syntax, from clause, and the critical role of where filters to prevent catastrophic data loss.
Demonstrate updating two columns at once in SQL, using a single update with comma-separated assignments to set fields like first name and nickname.
In this demo, discover how SQL comments with -- aid code readability and how square brackets allow spaces and reserved words in identifiers, with hands-on table creation and modification examples.
Learn to insert several identical values at once by using a loop or transaction, avoiding repetitive copy-paste and long scripts.
Master sql through the course's first exercise, following prompts involving football and transacting school name in Transactive Square, complete a two-hour practice video, and prepare for the next question.
Practice building a SQL query using five sample values with their ages: Michael Jackson 18, E A.D. 16, Raschid 17, Clint Eastwood 23, Envelope's bond 22.
Practice SQL select queries in Exercise 3 to sharpen your SQL skills and pursue mastery of SQL.
Join exercise 4 for a day-long challenge themed around the age of king two twenty four, and practice problem-solving within the SQL mastery course.
practice exercise 5 for the table and naming, as this is the last question in the set.
Execute correction exercise 1 by reviewing student records, correcting the first name and problem name fields, updating the table, and refreshing the top-left of the table to confirm changes.
The lecture demonstrates an exercise on inserting multiple rows into a student table, emphasizing the correct column order for first name and age, with Quidam as an example.
Practice building SQL queries by selecting records and applying where clauses to filter data, illustrated with examples using first names and names like Clint Eastwood in Veracruz.
Examine how data concepts relate to the exercise for IT students, including the digital-age context of age 24. Apply these insights to SQL practice and learning outcomes.
Master correction exercise 5 by practicing sql queries and executing each query as demonstrated in the lecture.
Build on previous sessions to work with a database, practicing select, insert, and filter operations, and introducing basic transactions to improve query performance, including distinct and order by.
Explore how to rename columns in SQL queries using aliases with the as clause, and see practical examples like aliasing names to nicknames in a sample dataset.
Learn how the SQL like operator refines filters to match patterns in names and dates using wildcards for substring and fragment searches.
discover how the top clause returns the first rows from a table, such as the first line or first five records, and how to delete or update them.
View a SQL demo on removing duplicates with the distinct clause, using select statements to produce clean, unique result sets.
Master SQL comparison operators such as =, !=, <, <=, >, and >= with live demos filtering ages like under 20 or 30–34 to illustrate query logic.
Explore the in, not in, is, and is not operators in sql, learn their syntax in where clauses, and filter by lists or specific values like date of birth.
Learn how to copy a table using select into in sql, including copying entire tables, creating a new table from a query, and filtering data to copy only matching rows.
Engage in a hands-on SQL exercise that asks you to remove duplicates in the age, reinforcing quick, efficient learning through discovery rather than cheating.
Practice sql queries by selecting the date of birth, starting with nineteen seventy six, and applying basic constraints to filter birth dates.
Engage in the exercise about et sidiq, the people who were born on January 1st.
Practice sql with exercise 9 by selecting the first name and handling the later properly.
Examine two different ways with equal emphasis, using eagles size 10 as a vivid reference in exercise 10 for mastering sql.
Master SQL queries by completing exercise 11 that selects evacuee people aged 17 and under, reinforcing filtering logic and age-based conditions.
Complete exercise 12 to practice SQL queries on age-related data, interpreting a scenario about people aged 17 and 38.
Exercise 13 demonstrates that DEC consists of the first seven rows of the table only.
Analyze exercise 14, referencing Silverline and Leonardo DiCaprio, and consider the phrase 'vertebra colored contact' to interpret ambiguous problem cues.
Explore the year and month date functions and learn to use the year function to filter records by birth year, selecting people not born in 1976.
Explore exercise 16 by examining the movement function and how different perspectives influence problem solving in SQL practice.
Master correction exercises 6 to 16 in part 1, focusing on distinct and like, removing duplicates, and crafting date-based and simple select queries.
Explore the second part of Transact SQL, focusing on aggregate functions like max and average, filtering data with where, and practicing through end-of-section exercises to validate learning.
Master how and and or operators combine conditions in sql where clauses. See examples using birth month, age thresholds, and how and vs or affect query results.
Learn to sort query results with order by, applying ascending or descending order on one or more columns, including numbers, dates, and text such as name.
Discover how to use min, max, and avg in SQL to compute ages, filter by birth year, and compare the minimum, maximum, and average values.
See how count and sum perform core aggregations on numeric data and rows, counting all rows, filtering with conditions, and handling duplicates and distinct values.
Master the between operator to select a range of data in SQL, with examples from ages 16 to 33 and birth years 1976 to 1983. Explore not between and syntax.
See how to group results with the group by clause in SQL, count rows, and handle aggregation when filtering by gender and birth year.
Explore the specifics of the having clause and how it filters after aggregation. Learn to use group by gender and age, apply aggregate functions, and compare having with where.
Explore how print statements return messages to the client and help track progress in large SQL batches, with a practical demonstration comparing print and select.
Are you a (very) big beginner on SQL, and you want to learn quickly how to make queries in TSQL?
This course will therefore be ideal for you.
After having installed SQL server on your computer, we will approach in this course in the order :
The creation and definition of a table
Selecting, updating, deleting and inserting data (with SELECT, UPDATE etc...)
Select a certain number of lines with the TOP, remove duplicates with the DISTINCT.
The operators BETWEEN, AND, OR,HAVING,PRINT,GROUP BY etc...).
Go even further in Transact SQL with UNION and UNION ALL, TRIM/LTRIM/RTRIM and UPPER/LOWER, etc...
Copy a table via SELECT INTO and comparison operators = != etc...
Aggregate functions: MIN, MAV and AVG
A long chapter of 1h 30 on joins! (INNER JOIN,LEFT/RIGHT JOIN FULL OUTER JOIN etc...)
Once this course is over, believe me that you will be much more comfortable with SQL and I also made sure that the videos don't exceed 10 minutes, so that it won't be too soporific :)
Why go for SQL technology?
SQL is one of the skills very actively sought after in the job market.
Administering an SQL server and querying in TSQL today is ensuring you have a full time job.
Moreover, SQL Server, because of its simplicity, allows you to quickly become proficient on very specific subjects.
Look at the average of my other courses (4,4/5), and you will see that my courses are quality courses :)