主题:SQL中的Select as 用法,请多多指教!
我的sql server中有一个表teaminfor:有三列分别为id,term,classtime.结构如下
id term classtime
1 春夏学期 周一
我想把其中的term、classtime合并到一起形成新的一列teamid,并插入表studentclass中,
我写的语句是:Insert into studentclass(teamid) select term+classtime as teamid from teaminfor
可是teamid中的“春夏学期”和“周一”之间有空格,不知如何消除,还请高手指点,不胜感谢!
id term classtime
1 春夏学期 周一
我想把其中的term、classtime合并到一起形成新的一列teamid,并插入表studentclass中,
我写的语句是:Insert into studentclass(teamid) select term+classtime as teamid from teaminfor
可是teamid中的“春夏学期”和“周一”之间有空格,不知如何消除,还请高手指点,不胜感谢!