bài 21

bài 21

Assessment

Flashcard

Others

KG

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

19 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Muốn truy xuất tất cả các dòng dữ liệu từ bảng "casi" ta dùng?

Back

SELECT * FROM casi;

2.

FLASHCARD QUESTION

Front

Muốn truy xuất các ca sĩ theo thứ tự tên theo thứ tự từ A đến Z ta dùng?

Back

SELECT * FROM casi ORDER BY tencasi ASC;

3.

FLASHCARD QUESTION

Front

Muốn truy xuất dữ liệu các ca sĩ có "idcasi" nằm trong danh sách (1, 2, 3) ta dùng?

Back

SELECT * FROM casi WHERE idcasi IN (1, 2, 3);

4.

FLASHCARD QUESTION

Front

Muốn truy xuất dữ liệu các ca sĩ theo thứ tự "idcasi" giảm dần ta dùng?

Back

SELECT * FROM casi ORDER BY idcasi DESC;

5.

FLASHCARD QUESTION

Front

Muốn truy xuất dữ liệu các ca sĩ có "idcasi" là 1 ta dùng?

Back

SELECT * FROM casi WHERE idcasi = 1;

6.

FLASHCARD QUESTION

Front

Muốn truy xuất dữ liệu các ca sĩ có "tencasi" bắt đầu bằng chữ "N" ta dùng?

Back

SELECT * FROM casi WHERE tencasi LIKE 'N%';

7.

FLASHCARD QUESTION

Front

Muốn truy xuất dữ liệu các ca sĩ có "tencasi" chứa từ khóa "Hoa" ta dùng ?

Back

SELECT * FROM casi WHERE tencasi LIKE '%Hoa%'

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?