I'm stuck on this:
I have an SQL table that I need to update for a class...I have to give all my employee's a 5% raise under the employee table. The thing is I don't know how to select multiple entries in a single column so I can do this...
Here is the table:
I have an SQL table that I need to update for a class...I have to give all my employee's a 5% raise under the employee table. The thing is I don't know how to select multiple entries in a single column so I can do this...
Here is the table:
Code:
CREATE TABLE [Employee] ( [Social_security_number] [numeric](18, 0) NOT NULL , [Last_name] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [First_name] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Address] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [City] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [State] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Zip_code] [numeric](18, 0) NULL , [Telephone_area_code] [numeric](18, 0) NULL , [Telephone_number] [numeric](18, 0) NULL , [Email_address] [char] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL , [Job_title_code] [numeric](18, 0) NULL , [Hire_date] [datetime] NULL , [Salary] [money] NULL ,
Comment