Question 11 Mark
Name the two wild card characters.
Answer
View full question & answer→Two wild Card Characters are % (Percentage) and _(Underscore).
14 questions · timed · auto-graded
Columns=7
Cardinality - 8
Initial table: 5 rows and 7 columns
Later 3 columns added i.e. 10 columns
2 rows deleted : 3 rows and 10 columns
5 new students: 5 rows
Degree = 10 (i.e. 7 + 3 = 10 columns)
cardinality = 8 (i.e. 5 – 2 + 5 = 8)
What will be the degree and cardinality of these tables in the cartesian product?
Cardinality – 35 (7 X5)
(a) To add new record
(b) To remove a record
(c) To change the name of a column
(d) To change the database
(e) To display records
(f) To edit record
(b) Delete
(c) Alter
(d) Use
(f) Select
(f) Update
| CHAR | VARCHAR |
| • It is fixed length string. | • It is variable length string. |
| • They are right-padded with spaces to the specified length. | • They are not right‑padded with space. The length is actual data it contains. |
| DDL | DML |
| • Its stands for Data Definition Language | • Its stands for Data Manipulation Language |
| • It is used to create/modify/ remove thedatabase schemas. | • It is used to insert/modify/ remove therecords (rows) of the table. |
| • For example Create,Alter, Drop | • For example Insert,Update, Delete |
For example AdmNo(Admission No) in table Student.