Viewing 15 posts - 1 through 15 (of 17 total)
Hi
I want count of binary tree levels..
example:
...
July 31, 2010 at 5:01 am
thank u
July 28, 2010 at 4:19 am
CREATE TABLE [dbo].[tbl_tree](
[node_id] [varchar](50) NOT NULL,
[parent_id] [varchar](50) NULL,
[node] [bit] NULL(False means Leftside and True means Rightside)
[JoinDate] Datetime
node_id...
July 28, 2010 at 4:12 am
Date Format : (dd/mm/yyyy)
My week is strat from saturday to friday
and im enter Fromdate - 1/12/2010 and Todate - 21/7/2010 that giving me output will be total week number
thank...
July 20, 2010 at 11:39 pm
thank u so much LutzM ....
July 20, 2010 at 11:17 pm
Date Format : (dd/mm/yyyy)
My week is strat from saturday to friday
and im enter Fromdate - 1/12/2010 and Todate - 21/7/2010 that giving me output will be total week number
thank...
July 20, 2010 at 11:07 pm
Thank u guys...
and one more thing my week is strat from saturday to friday
and im enter today's date that giving me output will be like this:
(dd/mm/yyyy)
10/7/2010 - 16/7/2010
3/7/2010 -...
July 19, 2010 at 11:23 pm
i got perfect one solution ..
July 17, 2010 at 12:06 am
thank you so much Peter Brinkhaus..
my problem is solved
July 17, 2010 at 12:03 am
paul pls try to understand me nd give me solution..
July 16, 2010 at 11:13 pm
please try it nd give me proper solution...
thank u..
July 16, 2010 at 8:16 am
i want to talk to u..
is it possible..?
July 16, 2010 at 8:13 am
USE tempdb;
GO
IF OBJECT_ID(N'dbo.Tree', N'U')
IS NOT NULL
DROP TABLE dbo.Tree;
GO
-- Test...
July 16, 2010 at 8:04 am
USE tempdb;
GO
IF OBJECT_ID(N'dbo.Tree', N'U')
IS NOT NULL
DROP TABLE dbo.Tree;
GO
-- Test...
July 16, 2010 at 7:48 am
How to count left side nodes and right side nodes for managing a chain link(binary tree)application
in already u posted script in sql server 2008 but i want need in sql...
July 16, 2010 at 7:42 am
Viewing 15 posts - 1 through 15 (of 17 total)