Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 9th, 2007, 10:12 PM
Friend of Wrox
 
Join Date: Aug 2006
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
Default creating a junction table

hi all

can anyone please give me some idea about the following issue?

i have a customers table, and user table.

in customers table i have-- custid,firname,lastname etc

users table -- id,username,password

i want to join these two, so that, i get the custid for future use

so that when the user should be able to login with username and password, and the remaining all informations should get based on the custid

how can i do this?

thanks


 
Old January 10th, 2007, 05:18 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 625
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jemacc
Default


create table customer_jct
(custjctID int identity (1,1)primary key clustered,custID int,id int)
IF you do not have relationship between the two table you will have to assign and create a temp table to aligh your records

Jaime E. Maccou





Similar Threads
Thread Thread Starter Forum Replies Last Post
creating table ph0neman Classic ASP Basics 3 January 22nd, 2008 05:06 PM
checkboxes to a junction table [email protected] Access 2 January 22nd, 2007 08:28 AM
creating table from cards orrery XSLT 1 June 9th, 2005 08:31 AM
Creating table with existing table without value kumar_kumar Oracle 1 January 4th, 2005 07:12 AM
Creating a new table from a dataset... vb_developer SQL Server ASP 4 September 21st, 2004 07:41 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.