Remove SQL Study Notes and assign values to new fields

Source: Internet
Author: User

Remove duplicate data

Add two fields

Alter TableT_employeeAddFsubcompanyVarchar(20);

Alter TableT_employeeAddFdepartmentVarchar(20);

 

Assign values to newly added fields

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Development' WhereFnumber='Dev001';

UpdateT_employeeSetFsubcompany='Shenzhen',Fdepartment='Development' WhereFnumber='Dev002';

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Humanresource' WhereFnumber='Hr001';

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Humanresource' WhereFnumber='Hr002';

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Infotech' WhereFnumber='It001';

UpdateT_employeeSetFsubcompany='Shenzhen',Fdepartment='Infotech' WhereFnumber='It002';

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Sales' WhereFnumber='Sales001';

UpdateT_employeeSetFsubcompany='Beijing',Fdepartment='Sales' WhereFnumber='Sales002';

Update T_employeeSetFsubcompany='Shenzhen',Fdepartment='Sales' WhereFnumber='Sales003';

 

Query and remove duplicates

Select DistinctFdepartmentFromT_employee

 

select distinct fdepartment , fsubcompany from t_employee

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.