2021-09-01 分類: 網(wǎng)站建設(shè)
mysql的查詢語句
查所有
select * from t5;
查一條數(shù)據(jù)
select *from t5 where id=9;
查符合條件數(shù)據(jù)對應(yīng)列的數(shù)據(jù)
select username from user where id=4;
給字段取別名
select username user form user;
select username as user from user;
-- distinct去除重復(fù)值 ,增加多個的時候,必須兩個同時不重覆才去除顯示
select distinct username,password form user;
查詢空值 null
select * from t1 where username is null;
select * from t1 where username is not null;
like的使用方法用來做搜索
like(包含)%PHP%包含php
select * from art where content like '%PHP%';
分享題目:mysql的查詢語句
標(biāo)題鏈接:http://www.rwnh.cn/news15/124765.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、網(wǎng)頁設(shè)計公司、品牌網(wǎng)站制作、網(wǎng)站建設(shè)、企業(yè)建站、外貿(mào)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容