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
| 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 |
| • Stands for Data Definition Language | • Stands for Data Manipulation Language |
| • It is used to create/modify/ remove the database schemas. |
• It is used to insert/modify/ remove the records (rows) of the table. |
| • For example Create, Alter, Drop | • For example Insert, Update, Delete |