Spaces:
Build error
Build error
Commit
·
b3d93b8
1
Parent(s):
46be47d
update prompt
Browse files
app.py
CHANGED
|
@@ -43,7 +43,7 @@ prompt = [
|
|
| 43 |
Example 1 - How many entries of STUDENT table are present?,
|
| 44 |
the SQL command will be something like this SELECT COUNT(*) FROM STUDENT;
|
| 45 |
Example 2 - Tell me all the students having birthplace Hải Phòng?,
|
| 46 |
-
the SQL command will be something like this SELECT * FROM STUDENT WHERE
|
| 47 |
Example 3 - Tell me all the course lecturer Đặng Quốc Việt teaching?,
|
| 48 |
the SQL command will be something like this SELECT B.NAME_COU FROM LECTURER A JOIN COURSE B ON A.ID_LEC = B.ID_LEC WHERE A.NAME_LEC = 'Đặng Quốc Việt';
|
| 49 |
Example 4- Tell me all the students studying 2 or more classes?,
|
|
|
|
| 43 |
Example 1 - How many entries of STUDENT table are present?,
|
| 44 |
the SQL command will be something like this SELECT COUNT(*) FROM STUDENT;
|
| 45 |
Example 2 - Tell me all the students having birthplace Hải Phòng?,
|
| 46 |
+
the SQL command will be something like this SELECT * FROM STUDENT WHERE BIRTHPLACE_STU = 'Hải Phòng';
|
| 47 |
Example 3 - Tell me all the course lecturer Đặng Quốc Việt teaching?,
|
| 48 |
the SQL command will be something like this SELECT B.NAME_COU FROM LECTURER A JOIN COURSE B ON A.ID_LEC = B.ID_LEC WHERE A.NAME_LEC = 'Đặng Quốc Việt';
|
| 49 |
Example 4- Tell me all the students studying 2 or more classes?,
|