Sql: With Practice Exercises, Learn Sql Fast Site

Find all employees with a salary over 75,000, sorted from highest to lowest.

SQL isn't case-sensitive ( select is the same as SELECT ), but writing keywords in CAPS makes your code easier to read.

SELECT * means "Select everything." Use it sparingly in large databases!

Always end your statements with a ; to tell the database you're done.

SELECT column1, column2 -- Which columns do you want? FROM table_name -- Which table are they in? WHERE condition -- How do you want to filter them? ORDER BY column1 DESC; -- How should the results be sorted? Use code with caution. Copied to clipboard 3. Practice Exercises To practice, imagine a table named : Department Engineering Engineering Exercise 1: The Basics

Get the names of all employees in the 'Engineering' department.

Find all employees with a salary over 75,000, sorted from highest to lowest.

SQL isn't case-sensitive ( select is the same as SELECT ), but writing keywords in CAPS makes your code easier to read.

SELECT * means "Select everything." Use it sparingly in large databases!

Always end your statements with a ; to tell the database you're done.

SELECT column1, column2 -- Which columns do you want? FROM table_name -- Which table are they in? WHERE condition -- How do you want to filter them? ORDER BY column1 DESC; -- How should the results be sorted? Use code with caution. Copied to clipboard 3. Practice Exercises To practice, imagine a table named : Department Engineering Engineering Exercise 1: The Basics

Get the names of all employees in the 'Engineering' department.

SQL: with practice exercises, Learn SQL Fast SQL: with practice exercises, Learn SQL Fast
Сайт "Всадники Кальрадии" не является СМИ. Администрация не несет ответственность за высказывания и публикацию каких-либо материалов, сделанные любыми пользователями форума, в том числе посредством личных и публичных сообщений. Материалы, размещенные на ресурсе третьими лицами, могут содержать информацию, не предназначенную для лиц, не достигнувших совершеннолетия. При обнаружении на ресурсе материалов, нарушающих законодательство Российской Федерации, необходимо обращаться к администрации.

Powered by SMF 2.0 | SMF © Simple Machines LLC | Сайт работает на быстром VPS/VDS хостинге от FASTVPS