Lecture 20 Flashcards
SQL for inserting
INSERT INTO EMPLOYEE(Name, SSN)
SELECT Pname, Pssn FROM PERSON
how to delete table SQL
DROP TABLE EMPLOYEE
how to delete the column from table SQL
ALTER TABLE EMPLOYEE
DROP COLUMN Name CASCADE
how to add a new column to table SQL?
ALTER TABLE EMPLOYEE
ADD COLUMN Hobby VARCHAR(10) DEFAULT ‘NA’
how to modify default value for attribute
ALTER TABLE EMPLOYEE ALTER COLUMN Hobby DROP DEFAULT
SET DEFAULT ‘Football’
how to add constraint in SQL
ALTER TABLE EMPLOYEE
ADD CONSTRAINT constraint_name UNIQUE(Name)
how to delete the records with particular value
DELETE FROM EMPLOYEE
WHERE Value=‘Cho-to-tam’
How to set the value of attribute to something for the employee with key = 1234
UPDATE EMPLOYEE
SET Attribute=‘something’
WHERE SSN=1234