首先 執行——》dos下;
然後開始輸入登入命令:
1.mysql -u 使用者名稱 -p
eg:mysql -u root -p
2.回車之後會輸出:enter password:輸入密碼
eg:enter password:123
路徑將變為:mysql>,說明你已登入成功。
我的登入情況:
c:/documents and settings/fengjian>mysql -u root -p
enter password: ***
welcome to the mysql monitor. commands end with ; or /g.
your mysql connection id is 16
server version: 5.1.37-community mysql community server (gpl)
type 'help;' or '/h' for help. type '/c' to clear the current input statement.
mysql>
Mysql學習筆記一
最近在學習mysql,以後工作會慢慢往這方面轉向,所以提前預習。現在全世界都喊著去ioe,所以咱也必須提前做個準備。衝.第一章基礎知識 1 改變表結構 增加列 alter table test add name char 6 更改列定義 alter table test change year bo...
Mysql學習筆記(一)
一 mysql學習筆記 觸發器 觸發器四要點 1.監視誰 table 2.監視事件 insert update delete 3.觸發時間 after before 4.觸發事件 insert update delete 語法 create trigger 觸發器名稱 after before 觸發...
Mysql學習筆記一
一 mysql資料型別 1 整數 浮點數 定點型別 1個位元組佔8位,漢字佔兩個位元組 16位 正數定義成unsigned 定點數 decimal m,d m表示總長度 d表示小數字 存入的時候四捨五入計算 範圍與double相同 例子 decimal 5,2 123.45 2 日期與時間 一般用d...