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