I have created a table in sql server and the tabel has Information of an Employee. There is a column to determine whether the Employee is male or female. i.e Male or Female. Now I need to convert all Male to Female and all Female to Male?
The table structure is:
CREATE TABLE Employee (
FName char(50),
LName char(50),
Address char(50),
Gender char(10),
Birth_Date date)
Freaky.
as a basic example, something like this: