Click here to Skip to main content
15,921,336 members
Home / Discussions / Database
   

Database

 
GeneralWhich query is faster? (Join or Where condition) [modified] Pin
AlexeiXX34-Mar-08 16:52
AlexeiXX34-Mar-08 16:52 
GeneralRe: Which query is faster? (Join or Where condition) Pin
Mycroft Holmes4-Mar-08 18:10
professionalMycroft Holmes4-Mar-08 18:10 
GeneralSQL Server to get data from a Webservice Pin
Mycroft Holmes4-Mar-08 14:21
professionalMycroft Holmes4-Mar-08 14:21 
QuestionRe: SQL Server to get data from a Webservice Pin
Adewale3-Apr-08 5:07
Adewale3-Apr-08 5:07 
Generaladding new fields Pin
Aptiva Dave4-Mar-08 9:34
Aptiva Dave4-Mar-08 9:34 
GeneralRe: adding new fields Pin
Christian Graus4-Mar-08 9:48
protectorChristian Graus4-Mar-08 9:48 
Generaladd new column in table.. Pin
Rajeshwar Code- Developer4-Mar-08 7:43
Rajeshwar Code- Developer4-Mar-08 7:43 
GeneralRe: add new column in table.. Pin
John_Adams4-Mar-08 8:07
John_Adams4-Mar-08 8:07 
Hi,

To add a column to an existing table, the ALTER TABLE syntax is:

------------------------------------------------------------------
ALTER TABLE table_name
ADD column_name column-definition

For example:

ALTER TABLE NewField
ADD TableName INT IDENTITY(1,1)
------------------------------------------------------------------

This will add a column called NewField to the TableName table.

I hope this helps Smile | :) .

Regards,
John Adams
ComponentOne LLC

GeneralRe: add new column in table.. Pin
Rajeshwar Code- Developer4-Mar-08 8:20
Rajeshwar Code- Developer4-Mar-08 8:20 
Generalcreate temporary table from select Pin
gottimukkala4-Mar-08 4:53
gottimukkala4-Mar-08 4:53 
GeneralRe: create temporary table from select Pin
andyharman4-Mar-08 5:49
professionalandyharman4-Mar-08 5:49 
QuestionSQL Server database Pin
Member 4876724-Mar-08 3:44
Member 4876724-Mar-08 3:44 
GeneralRe: SQL Server database Pin
Colin Angus Mackay4-Mar-08 5:55
Colin Angus Mackay4-Mar-08 5:55 
GeneralRe: SQL Server database Pin
Member 4876724-Mar-08 6:05
Member 4876724-Mar-08 6:05 
GeneralRe: SQL Server database Pin
Colin Angus Mackay4-Mar-08 6:46
Colin Angus Mackay4-Mar-08 6:46 
Generalgetting the update just for one record in the table Pin
laziale4-Mar-08 3:08
laziale4-Mar-08 3:08 
GeneralRe: getting the update just for one record in the table Pin
soporificeffect4-Mar-08 4:21
soporificeffect4-Mar-08 4:21 
GeneralRe: getting the update just for one record in the table Pin
Khawar Abbas15-Mar-08 2:03
Khawar Abbas15-Mar-08 2:03 
Generalinserting data in detailsview Pin
laziale4-Mar-08 1:52
laziale4-Mar-08 1:52 
GeneralRe: inserting data in detailsview Pin
laziale4-Mar-08 2:04
laziale4-Mar-08 2:04 
GeneralRe: inserting data in detailsview Pin
laziale4-Mar-08 3:03
laziale4-Mar-08 3:03 
Generalmonitoring users from application Pin
Xerox43-Mar-08 23:11
professionalXerox43-Mar-08 23:11 
GeneralRe: monitoring users from application Pin
That's Aragon4-Mar-08 0:20
That's Aragon4-Mar-08 0:20 
GeneralAutonumber for a field in SQL Database Pin
laziale3-Mar-08 22:05
laziale3-Mar-08 22:05 
GeneralRe: Autonumber for a field in SQL Database Pin
Christian Graus3-Mar-08 22:15
protectorChristian Graus3-Mar-08 22:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.