Below are the SQL statements a DBA is planning to execute on a database:
CREATE TABLE t1 (name VARCHAR (1));
INSERT INTO t1 VALUES ("˜A'), ("˜B'), ("˜C'), ("˜D');
ALTER TABLE t1 ALTER COLUMN name SET DATA TYPE INT;
What will be the outcome of the last statement?
JamesBond
3 years, 4 months agodb2tester
5 years, 1 month ago