输入的结果是?
插入之后的结果吗
你试一下不就知道了

解决方案 »

  1.   


    select * from t_student
    S_number S_name     sex  birthday
    -------- ---------- ---- -----------------------
    20030101 李丽         女    1981-10-01 00:00:00.000
    20030102 王伟         男    1982-05-01 00:00:00.000
    20040101 何新宇        男    1983-06-12 00:00:00.000
    20040102 张小梅        女    1982-08-02 00:00:00.000
    20040201 韦明         男    1983-07-01 00:00:00.000(5 行受影响)
    select * from t_courseC_number C_name           teacher    hours       credit
    -------- ---------------- ---------- ----------- -------------
    1001     计算机导论            李大中        50          2
    1002     高级语言程序设计         张文杰        70          3
    2001     SQL Server 2000  何勇         65          3
    2002     DELPHI程序设计       江涛         90          5
    3001     操作系统             苏丽         80          4(5 行受影响)
    select * from t_scoreS_number C_number score
    -------- -------- -------------
    20030101 1002     68
    20030101 2002     72
    20030102 2002     80
    20040101 2002     72
    20040102 2002     72
    20040201 1001     75
    20040201 2002     65(7 行受影响)