SINTAKS SQL SERVER 2000 ( 2 ) 1. ALTER TABLE – Add Column ----- start ---USE PUBS GO IF EXISTS ( select * from dbo.sysobjects where id = object_id(N'[dbo].[_MyTempTable]') and OBJECTPROPERTY(id, N'IsUserTable') = 1 ) DROP TABLE [dbo].[_MyTempTable] GO ---1. CREATE TABLE _MyTempTable ( cola INT PRIMARY KEY ) GO SELECT * FROM _MyTempTable GO ---2. ALTER TABLE _MyTempTable ADD column_b VARCHAR(20) NULL GO SELECT * FROM _MyTempTable GO ----- end ---Results :

Reference to : 1. MSDN Library Help of SQL Server 2000 2. www.w3schools.com/sql/

1

2. ALTER TABLE – Drop Column ----- start ----USE PUBS GO ALTER TABLE _MyTempTable DROP COLUMN column_b GO SELECT * FROM _MyTempTable GO ----- end ---Results :

3. CREATE VIEW ----- start ----USE PUBS GO IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = 'titles_view_1') DROP VIEW titles_view_1 GO CREATE VIEW titles_view_1 AS SELECT title, type, price, pubdate FROM titles GO SELECT * FROM titles_view_1 GO ----- end ----Results :

Reference to : 1. MSDN Library Help of SQL Server 2000 2. www.w3schools.com/sql/

2

4. ALTER VIEW ----- start ----USE pubs GO ALTER VIEW titles_view_1 AS SELECT title, ytd_sales FROM titles WHERE type = 'mod_cook' GO SELECT * FROM titles_view_1 GO ----- end ----Results :

5. DROP VIEW ----- start ----USE PUBS GO IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = 'titles_view_1') DROP VIEW titles_view_1 GO SELECT * FROM titles_view_1 GO ----- end ----Results :

Reference to : 1. MSDN Library Help of SQL Server 2000 2. www.w3schools.com/sql/

3

02_Sintaks SQL Server 2000.pdf

Download. Connect more apps... Try one of the apps below to open or edit this item. 02_Sintaks SQL Server 2000.pdf. 02_Sintaks SQL Server 2000.pdf. Open.

186KB Sizes 0 Downloads 150 Views

Recommend Documents

SQL-Server-DBA.pdf
SQL-Server-DBA.pdf. SQL-Server-DBA.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying SQL-Server-DBA.pdf.

SQL-Server-DBA.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item.

SQL Server 2012 Tutorials - Writing Transact-SQL Statements.pdf ...
express, statutory, or implied warranties. Neither the authors, Microsoft Corporation, nor its resellers, or distributors will. be held liable for any damages caused or alleged to be caused either directly or indirectly by this book. Page 3 of 21. SQ

pdf-1234\inside-microsoft-sql-server-2005-t-sql ...
... apps below to open or edit this item. pdf-1234\inside-microsoft-sql-server-2005-t-sql-program ... -learning-by-itzik-ben-gan-dejan-sarka-roger-wolter.pdf.

pdf-1885\sql-server-t-sql-recipes.pdf
Download. Connect more apps... Try one of the apps below to open or edit this item. pdf-1885\sql-server-t-sql-recipes.pdf. pdf-1885\sql-server-t-sql-recipes.pdf.

Microsoft SQL Server 2017 and Azure SQL Database - GitHub
May 4, 2017 - ALTER ANY USER – See Connect and Authentication – Database Permissions Chart. CREATE ..... Note: ADD SIGNATURE requires.

expert t sql window functions in sql server
expert t sql window functions in sql server contains important information and a detailed explanation about expert t sql window functions in sql server, ...

advanced sql injection in sql server applications pdf
advanced sql injection in sql server applications pdf. advanced sql injection in sql server applications pdf. Open. Extract. Open with. Sign In. Main menu.

Microsoft odbc sql server driver neither dsn nor server keyword ...
server keyword supplied.Hp universal print driver for windows xp. Sony vaio pro 13 driver windows 7.Driver hp photosmart b109nwireless.Canon pixmaip1200 ...

SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas ...
Page 3 of 34. SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas Ahlawat.pdf. SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas Ahlawat.pdf.

Mastering Your SQL Server Environment.pdf
There was a problem loading more pages. Mastering Your SQL Server Environment.pdf. Mastering Your SQL Server Environment.pdf. Open. Extract. Open with.

SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas ...
--ANS: SELECT * FROM [EmployeeDetail] WHERE FirstName like '[a-p]%'. Page 3 of 34. SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas Ahlawat.pdf. SQL SERVER INTERVIEW QUESTIONS QUERIES By Vikas Ahlawat.pdf. Open. Extract. Open with. Sign In. Main menu.

sql server books pdf
Sign in. Loading… Whoops! There was a problem loading more pages. Whoops! There was a problem previewing this document. Retrying... Download. Connect ...

sql server performance tuning pdf
Sign in. Loading… Whoops! There was a problem loading more pages. Retrying... Whoops! There was a problem previewing this document. Retrying.

01_Sintaks SQL Server 2000.pdf
Download. Connect more apps... Try one of the apps below to open or edit this item. 01_Sintaks SQL Server 2000.pdf. 01_Sintaks SQL Server 2000.pdf. Open.