SQL Server ÈÏÖ¤(Certification)
΢ÈíµÄÊý¾Ý¿âÈÏÖ¤´Ó°üÀ¨3¸ö·½ÃæµÄ£º
MCTS: Microsoft Certified Technology Specialist
MCITP: Microsoft Certified IT Professional
MCM: Microfot Certified Master.
΢Èí½¨Òé²Î¼Ó×îа汾µÄÊý¾Ý¿âÈÏÖ¤¿¼ÊÔ£¬µ±Ç°°æ±¾ÊÇÖ¸Microsoft SQL Server 2008¡£
SQL Server2008 MCTS°üÀ¨3¸öÈÏÖ¤£º
1> SQL Server 2008 Implementation and Maintenace;
2> SQL Server 2008 Database Development;
3> SQL Server Business Intelligence Development and Maintenance.
SQL Server 2008 MCITP Ò²°üº¬3¸öÈÏÖ¤£º
1> Database Administrator IT Professional;
2> Database Developer IT Professional;
3> Business Intelligence Developer IT Professional.
MCITP±ÈMCTSÒª¿¼²ìµÄ·¶Î§¸ü¹ã£¬ÒªÇó¶ÔSQL Server 2008¼¼ÊõÁ˽âµÄ¸ü¾«Ï¸¡£ËùÒÔMCITPÒª±ÈMCTSÉÔ΢ÄѹýЩ¡£
MCMµ½2009Äê4Ô·ÝÈ«ÇòÖ»ÓÐ2¸öÈËͨ¹ýÁË¡£Õâ¸öÈÏÖ¤ÎÞÂÛÊǶԼ¼ÊõµÄÒªÇ󣬻¹ÊÇ»¨·ÑµÄ½ðÇ®¶¼ÊÇÏà¶Ô½Ï¸ßµÄ£¬ÕâÀï¾Í²»ÔÙÏêϸ½éÉÜÁË£¬ÓÐÐËȤµÄÅóÓÑ¿ÉÒÔ²ÎÕÕ
www.microsoft.com/learning/mcp/master/sql/default.mspx
Ïà¹ØÎĵµ£º
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Xml;
using System.Data;
namespace MyDbTest
{
class Program
{
static void Main(string[] args)
{
SqlConnection thisConnection = new SqlConnection(
@ ......
Student(S#,Sname,Sage,Ssex) ѧÉú±í
Course(C#,Cname,T#) ¿Î³Ì±í
SC(S#,C#,score) ³É¼¨±í
Teacher(T#,Tname) ½Ìʦ±í
ÎÊÌ⣺
1¡¢²éѯ“001”¿Î³Ì±È“002”¿Î³Ì³É¼¨¸ßµÄËùÓÐѧÉúµÄѧºÅ£»
select a.S# from (select s#,score from SC where C#='001') a,(select s#,score
fr ......
±íרÇø
--
¸´ÖÆ±í¼°Êý¾Ý£¨´Ó
userinfo
±í¸´ÖƵ½Ð±í
b
select
*
into
b
from
UserInfo
--
»ñÈ¡µ±Ç°Êý¾Ý¿âÖеÄËùÓÐÓû§±í
select * from sysobjects where xtype='U' and category=0
--
»ñȡijһ¸ö±íµÄËùÓÐ×Ö¶Î
......
&nbs ......
select name as ¿âÃû from master..sysdatabases where dbid>=7 »ñµÃÊý¾Ý¿âÃû³Æ
select * from sysobjects where xtype='u' or xtype='v' ²éѯÊý¾Ý¿âÀïËùÓбíµÄsqlÓï¾ä£¡
select name from sysobjects where type='u' ²éѯһ¸ö¿ ......