Viewing 15 posts - 1 through 15 (of 69 total)
July 5, 2023 at 2:04 pm
Thx a lot.
May 12, 2023 at 2:45 pm
Great Thanks frederico_fonseca.
Just curious to ask how to add decimal(19, 6) to each column ?
is it manually or any technic.
Share your answer will be appricated.
May 12, 2023 at 1:21 pm
May I know the reason for this issue?
Why i am not able to create this table?
max column limit is 1024 right?
can you please clarify?
May 12, 2023 at 11:28 am
no not possible on productid
May 12, 2023 at 11:19 am
Hi Jonathan AC Roberts and Phil Parkin,
Thanks for your reply but if i create 2 temp tables how to join in query as there is no column mapping columns right?
May 12, 2023 at 10:27 am
CREATE TABLE [dbo].[aaa_tempSalesData1](
[CustomerID] [int] NULL,
[ProductID] [int] NULL,
[RepID] [int] NULL,
[Amount] [decimal](18, 6) NULL,
[InstallmentDate] [date] NULL,
[Customer] [varchar](200) NULL,
[Rep Name] [varchar](200) NULL,
[Product] [varchar](100) NULL,
[IssueID] [int] NULL,
[IssueDate] [date] NULL,
[IssueName] [varchar](110) NULL,
[StartDate]...
May 12, 2023 at 10:18 am
Hi Ratbak,
Thanks for your reply but order is the only my main problem.
--Expected o/p : Previours years following by current year data
--Jan-2022,January-2022,Jan-2023,01-01-2023,Jan-2023,Jan-2023
Thanks
Bhanu
May 9, 2023 at 1:57 pm
No luck sir still i am getting the same result.
declare @id numeric(19,6) = '123.456'
select @id, ROUND(@id,2)
(No column name) (No column name)
123.456000 123.460000
please provide any other alternative way.
November 22, 2021 at 2:23 pm
thanks for your respone.
my requuirement is
"there should only be a return
if a given AlertID only has AlertTypeID's of both 4 and 6" nothing else.
thanks
bhanu
March 19, 2020 at 6:30 pm
sorry updated the data.
create table #comapny
(
companyid int,
childname varchar(100),
activeid int)
insert into #comapny
select 1,'aaa',0
union ALL
select 1,'bbb',0
union ALL
select 1,'ccc',1
UNion ALL
select 2,'ddd',0
union ALL
select 2,'eee',0
union ALL
select 2,'fff',0
select *from #comapny
--Existing Data:
companyid childname activeid
1 aaa 0
1 bbb...
August 19, 2019 at 2:10 pm
Thanks you so much.
May 30, 2019 at 11:11 am
Viewing 15 posts - 1 through 15 (of 69 total)