mysql -h localhost -u root -p //啟用mysql
lmy1234;
show databases; //檢視已存在的資料庫
use (databses); //使用某個資料庫
create table pet( //建立乙個資料表
name varchar(20),
owner varchar(20),
species varchar(20),
*** char(1),
birth date,
death date
show tables; //檢視資料表
describle pet; //檢視資料表結構
insert into pet values('fluffy','harold','cat','f','1999-03-30','2009-10-09'); //插入資料
insert into pet values('hally','jim','dog','m','2001-03-30','2011-11-11');
insert into pet values('woddy','jack','bird','f','2003-03-30',null);
select * from pet where name = 'fluffy'; //按條件查詢
select * from pet where name = 'woddy' and *** = 'm'; //多條件和查詢
select * from pet where name = 'woddy' or *** = 'm'; //多條件或查詢
select name,birth from pet where birth >='2000-1-1'; //特定的條件查詢
select name,birth,species from pet where *** = 'm' order by birth; //按此順序查詢
select name,(to_days(now())-to_days(birth))/365 as age from pet; //按年齡查詢
select count(*) from pet ; //查詢記錄數
select count(*) from pet where *** = 'm'; //按性別查詢記錄數
在學習中遇到mysql 版本不匹配的問題,mysql_front不能開啟.sql的檔案/
Jmeter初學總結
剛剛接觸到測試,才開始,下面說一下我對接觸jmeter的小總結 一 安裝 3,環境變數的配置 使用者變數 jmeter home f apache jmeter 2.12 注意這是你存放的路徑 系統變數 classpath 新增 jmeter home lib ext apachejmeter co...
初學ROS總結
初步總結一下自己對ros的認識,遇到的坑以及相應的解決辦法。首先介紹一下我的電腦配置,win10系統,裝虛擬機器ubuntu16.04,ros版本kinetic.第一步是ubuntu的使用,如果不熟悉ubuntu的話,可以去乙個叫 實驗樓的 上學習ubuntu的基本操作,命令。第二部ros的安裝,按...
Svg初學總結
原來使用js外掛程式來畫圖highchart.js,發現還是用svg實現的,打算學習了解一下,以下都是可直接在html插入。支援瀏覽器 internet explorer9,火狐,谷歌chrome,opera和safari 矩形原始碼 解析 rect 元素的 width 和 height 屬性可定義...