Which SQL code snippet will correctly demonstrate a Data Definition Language (DDL) operation used to create a table?
DROP TABLE employees;
INSERT INTO employees (id, name) VALUES (1, 'Alice');
CRFATF tabif employees ( id INT, name suing
ALTFR TABIF employees add column salary DECTMA(10,2);
Submit