Insert the missing statement to get all the columns from the Customers table. Customers кестесінен барлық бағандарды алу үшін өткізіп алған мәлімдемені қойыңыз. ____ ____ ____ ; Write a statement that will select the City column from the Customers table. Customers кестесінен City бағанын таңдайтын сұраныс жазыңыз. ____ ____ ____ ____ ; Select all the different values from the Country column in the Customers table. Customers кестесіндегі Country бағанынан барлық әртүрлі мәндерді таңдаңыз. ____ ____ ____ ____ ____ Select all records where the City column has the value "Berlin". "City" бағанының "Berlin" мәні бар барлық жазбаларды таңдаңыз. SELECT * FROM Customers ____ ____ ____ ____ ; Use the NOT keyword to select all records where City is NOT "Berlin". City "Berlin"емес барлық жазбаларды таңдау үшін not кілт сөзін пайдаланыңыз. SElECT * FROM Cutstomers ____ ____ ____ ____ ; Select all records where the CustomerID column has the value 32. CustomerID бағанының мәні 32 болатын барлық жазбаларды таңдаңыз. ____ ____ ____ ____ ____ ____ ____ ____ ; Select all records where the City column has the value 'Berlin' and the PostalCode column has the value 12209. "City" бағанында "Berlin", ал "PostalCode" бағанында 12209 мәні бар барлық жазбаларды таңдаңыз. ____ * FROM Customers ____ City = 'Berlin' ____ ____ = 12209; Select all records where the City column has the value 'Berlin' or 'London'. "City" бағанында "Berlin" немесе "London"мәні бар барлық жазбаларды таңдаңыз. ____ * FROM Customers ____ City = 'Berlin' ____ ____ = ____ ; Use the IN operator to select all the records where Country is either "Norway" or "France". "Norway" немесе "France"елі бар болып табылатын барлық жазбаларды таңдау үшін IN операторын пайдаланыңыз. SELECT * FROM Customers ____ ____ ____ ____ "France" ____ ; Use the IN operator to select all the records where Country is NOT "Norway" and NOT "France". Елі "Norway" немесе "France"емес барлық жазбаларды таңдау үшін IN операторын пайдаланыңыз. SELECT * FROM Customers ____ ____ ____ ____ ('Norway', 'France'); Select all records from the Customers table, sort the result alphabetically by the column City. Customers кестесінен барлық жазбаларды таңдап, нәтижені City бағаны бойынша алфавиттік ретпен сұрыптаңыз. SELECT * FROM Customers ____ ____ ; WHERE Select all records from the Customers table, sort the result alphabetically, first by the column Country, then, by the column City. "Customers" кестесінен барлық жазбаларды таңдап, нәтижені алфавиттік ретпен, алдымен "Country" бағанынан, содан кейін "City" бағанынан сұрыптаңыз. SELECT * FROM Customers ____ ____ ;

Bestenliste

Visueller Stil

Einstellungen

Vorlage ändern

Soll die automatisch gespeicherte Aktivität wiederhergestellt werden?