Dev4Hub
TutorialsRoadmapReviewNotesCode Editor
Sign inSign up
  • Python
  • HTML
  • CSS
  • JavaScript
  • SQL
Your progress0 / 4
search
school

SQL Basics

  • 1SQL Introduction
  • 2SQL SELECT
  • 3SQL WHERE
  • 4SQL INSERT
Tutorialschevron_rightSQL Tutorialchevron_rightSQL SELECT

SQL SELECT

format_list_numberedLesson 2 of 4schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready
01

The SELECT Statement

The SELECT statement is used to select data from a database.

Example

SELECT * FROM Customers;
Try it Yourself »

Example

SELECT CustomerName, City FROM Customers;
Try it Yourself »
arrow_back PreviousSQL IntroductionNext arrow_forwardSQL WHERE

Dev4Hub

Learn coding with hands-on tutorials, examples and quizzes — covering Python, HTML, CSS, JavaScript, SQL and more.

Tutorials

  • Python
  • HTML
  • CSS
  • JavaScript
  • SQL

Tools

  • Code Editor
  • All Tutorials
© 2026 Dev4Hub. Inspired by the W3Schools learning model.