每天積累一點點,期待自己的進步❤
1.關於substr函式的用法和個人見解:
substr(string,start position,length)
我理解為,擷取某個字串中的某些內容(舉例:』20170208『只獲取年月也就是』201702『)
①string引數為字串的意思,可以直接寫內容如:20170208,也可以引用某張表中的字段,比如:a.rxrq這樣的形式.
②start position字面意思就是開始位置,也就是你想要從哪個位置開始擷取資料,例子中我想擷取其中的年月也就是從2開始,2是第一位,所以這個引數就為1.
③length為長度的意思,也就是你想要擷取的內容長度,例子中的201702一共是6位,也就是6個字元,所以這個引數就為6.
sql語句整理
建立表 create table teacher id int 11 not null auto increment,teaname varchar 10 not null,varchar 10 not null,course varchar 10 not null,primary key id e...
sql語句整理
mysql 命令大全 1 修改主鍵id的遞增預設值 alter table tablename auto increment 100000 2 將表重新命名 alter table oldtablename rename to newtablename 3 為表新增新的字段 alter table ...
常用sql語句整理
a 判斷資料庫是否存在 if exists select from sys.databases where name 庫名 刪除資料庫 drop database 庫名b 判斷要建立的表名是否存在 if exists select from dbo.sysobjects where id objec...