Viewing 8 posts - 1 through 8 (of 8 total)
L TRIM removes all the white space from the starting of the pattern and R TRIM removes all the white space at the end of the pattern.:-)
August 26, 2013 at 2:06 am
CREATE TABLE Emp(
EmpName VARCHAR(9),
Age INT,
MaritalStatus char(1))
INSERT INTO Emp VALUES ('Abhinav',40,'S')
INSERT INTO Emp VALUES ('Dhvani',20,'M')
INSERT INTO Emp VALUES ('Nehal',20,'M')
INSERT INTO Emp VALUES ('Sunil',95,'M')
INSERT INTO Emp VALUES ('Suvrendu',40,'M')
INSERT INTO Emp VALUES ('Bill',11,'S')
INSERT...
July 8, 2013 at 5:43 am
create table marks
(
student name nvar char(50),
marks int
)
Insert into marks(student name,marks) values('ma ha',67)
Insert into marks(student name,marks) values('tuba',78)
Insert into marks(student name,marks) values('Deena',70)
Insert into marks(student name,marks) values('Oriya',90)
Insert into marks(student name,marks) values('saga',98)
select * from...
June 17, 2013 at 11:15 pm
sorry,I cant understand your doubt but i think this may provide solution to you.
Declare @product ID int
Declare @product Type char(10)
Declare @product Rank int
Declare cc...
June 13, 2013 at 11:22 pm
That not possible ,we can call function with in the store procedure.
June 12, 2013 at 10:57 pm
Thats not possible to call store procedure inside the function,we can call function with in the store procedure
June 12, 2013 at 10:56 pm
Cross apply is very difficult than join ...i think there is no data available depends upon your requirement give the table of contents connected with this query.
June 11, 2013 at 11:34 pm
Ur code is unable to understand specify your doubt and use clear SQL query.
June 11, 2013 at 5:25 am
Viewing 8 posts - 1 through 8 (of 8 total)