Hi, Still very new at this so please don't use too big of words :)
this is the error i'm getting:
Msg 8115, Level 16, State 8, Line 1
Arithmetic overflow error converting int to data type numeric.
The statement has been terminated.
HERE IS MY DATABASE SQL SERVER
create table tbVehicle
(VehicleID int primary key identity (0,1),
vehtype Varchar (50),
vehYear Varchar (4),
vehMake Varchar (50),
vehModel Varchar (50),
vehPrice Decimal (8,2),
vehCondition Varchar (50))
insert into tbVehicle (vehType, vehYear, vehMake, vehModel, vehPrice,vehCondition) values
('SUV', '2013','KIA','SORENTO', 2535000, 'NEW'),
('CAR', '2013', 'PORCHE', 'PANAMERO', 17530000,'NEW'),
('CAR', '2012','VW','BEETLE',2339500,'USED'),
('TRUCK','2011','GM','CANYON',2475000,'USED'),
('TRUCK','2010', 'FORD','F-150',3116100,'USED'),
('SUV','2009','FORD','EXPLORER',2598500,'USED'),
('CAR','2013','FORD','MUSTANG',4306600,'NEW'),
('CAR','2013','BMW','Three SERIES',8952300,'NEW')
Not sure how to get around this, and I want to make a stored procedure as well - thanks all
'Stop my insanity'