MySql常用查詢語句

2021-09-10 17:15:39 字數 557 閱讀 9314

根據字段進行查詢

select nickname from os_user where nickname = 「biubiubiu」

查詢os_user_account表中金額由大到小排名前三的使用者的所有資訊

select * from os_user_account order by balance desc limit 3

關聯查詢 在os_user表中與os_user_account表中查詢nickname=「biubiubiu」的金額「blance」為多少?

select os_user_account.balance from os_user_account inner join os_user on os_user.id=os_user_account.os_user_id where os_user.nickname=『biubiubiu』

關聯查詢

select * from os_user_account where os_user_id in (select id from os_user where nickname=『那個傷』 or nickname=『天亮』 )

mysql 常用查詢語句

1 在原有的時間欄位上做加減 1 減幾天date sub update bg outpatient test set test time date sub test time,interval 30 day where test time sysdate 2 加幾天adddate update bg...

mysql常用效能查詢語句

檢視mysql本次啟動後的執行時間 單位 秒 show status like uptime 檢視select語句的執行數 show status like com select 檢視insert語句的執行數 show status like com insert 檢視update語句的執行數 sh...

mysql查詢常用小語句

在mysql中有個資料庫information schema下的表tables記錄了所有資料庫中所有的表相關資訊 table schema 資料庫名稱 select count from information schema.tables where table schema 庫名 select c...