mysql語句溫習
show databases; //顯示所有資料庫
select database(); //檢視當前資料庫
show tables; //顯示表名
user db_name[;] //切換資料庫
desc tb_name;/describe city;/explain city; //顯示資料庫列資訊
show columns from db_name; //顯示資料庫列資訊
select version(); //查詢當前資料庫版本
select curdata();/select current_date; //查詢當前日期(yyyy-mm-dd)
select now(); //查詢當前時間(yyyy-mm-dd hh:mm:ss)
select user(); //查詢當前登入賬戶
select user() \c //取消執行當前語句
create database mydb; //建立資料庫 'mydb'(類unix下資料庫是區分大小寫的)
create table tb_name(co_name co_type...); //建立表
load data local infile '/path/pet.txt' into table pet[lines terminated by '\r\n']; //從本地檔案將資料匯入表
select year(curdate()); //查詢當前年
select month(curdate()); //查詢當前月
select dayofmonth(curdate()); //查詢當前日
select right(curdate(), 5); //right用法
select left(curdate(), 7); //left用法
select date_add(curdate(), interval n month); // date_add的用法, n為整數(為負數表示相減)
select date_add(curdate(), interval n year);
select date_add(curdate(), interval n day);
select mod(12, 5);/select 12 % 5; //取餘運算
select * from tb_name where co_name regexp 'regexp'; //正則模糊匹配查詢(not regexp, rlike, not rlike)
show index from db_name; //檢視索引資訊
source filename; // 批處理執行sql指令碼(source d:/mysql.sql;)
alter table tb_name auto_increment = n; //修改自增從n開始
select concat(str...); //將字串拼接起來(任意個數)
show engines; //檢視資料庫引擎
alter table tb_name modify co_name data_type; //修改表字段的資料型別
analyze table tb_name; //幫助優化索引
mysql支援語句 mysql語句
delete 刪除資料表中的行 可以刪除某一行,也可以在不刪除資料表的情況下刪除所有行 刪除某一行 delete from 資料表名稱 where 列名稱 值 刪除所有行 delete from 資料表名稱 drop 刪除資料表或資料庫,或刪除資料表字段。刪除資料庫 drop database 資料...
linux top命令溫習
1.作用 top命令用來顯示執行中的程式程序,使用許可權是所有使用者。2.格式 top d delay q c s s i n 3.主要引數 d 指定更新的間隔,以秒計算。q 沒有任何延遲的更新。如果使用者有超級使用者,則top命令將會以最高的優先序執行。c 顯示程序完整的路徑與名稱。s 累積模式,...
年後小溫習
過年放假15天,還有幾天就上班了,所以決定先小小的溫習一下。1.set設定器 void setabc int bool nsstring.aabc void指無返回值型別 get訪問器 int bool nsstring.getabc 2.用animate使sprite消失 id delete cc...