中山php|最優(yōu)網(wǎng)絡 :中山做網(wǎng)站 中山php建站
最優(yōu)良人
Category Page for: 數(shù)據(jù)庫
常用的Mysql語句
2011/08/14 at 00:53 » Comments (492)
1 登陸mysql服務器 mysql -uroot -ppassword 2 進入數(shù)據(jù)庫 use haxinbbs; 3 插入一條記錄 insert into user(username,password) values('harryzyp','harryzyp'); sql="insert into 目標數(shù)據(jù)表 select * from 源數(shù)據(jù)表" (把源數(shù)據(jù)表的記錄添加到目標數(shù)據(jù)表) 4 查看一個記錄或多個 select password,sex(或*) from user where username='harryzyp';(等于 = 不等于 <> 小于 < 大于 > ...more »