Tutorialschevron_rightSQL Tutorialchevron_rightSQL SELECTSQL SELECTformat_list_numberedLesson 2 of 4schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready01The SELECT StatementThe SELECT statement is used to select data from a database.ExampleSELECT * FROM Customers;Try it Yourself »ExampleSELECT CustomerName, City FROM Customers;Try it Yourself »arrow_back PreviousSQL IntroductionNext arrow_forwardSQL WHERE