LIST I | LIST II |
---|---|
A. Alter | I. Change the name of the column |
B. Update | II. Update existing information in a table |
C. Delete | III. Delete an existing row from table |
D. Create | IV. Create a database |
LIST I | LIST II |
---|---|
A. SELECT LOWER('COMPUTER'); | IV. 'computer' |
B. SELECT LEFT('COMPUTER', 3); | I. 'COM' |
C. SELECT RIGHT('COMPUTER', 4); | II. 'UTER' |
D. SELECT MID('COMPUTER', 2, 3); | III. 'OMP' |
mysql> Select __?__ (53, 10);
output __3