Sql Server 自身鏈結的乙個小知識

2022-07-12 08:27:11 字數 415 閱讀 6077

有乙個student表

內容如下

id    name    age

1王子博    272

王子碩    253

王家璽    74

王家拓    

2我想查詢 比 王家璽 年齡大的人

語句1:select s1.id,s1.name,s1.age from student s1,student s2

where s2.name='王家璽'  and s1.age>s2.age

語句2:select s1.id,s1.name,s1.age

from  student s1 inner join student s2  on  s1.age >s2.age where  s2.name='王家璽'

挺簡單的乙個問題,我現在才捯飭明白。。

sql server鏈結查詢

一 連線 結果集中有多個表的資訊時用連線查詢 1.內連線 多個表根據公共列連線,符合條件的顯示,不符合條件的不顯示 2.外連線 多個表根據公共列連線,顯示乙個表中的所有資訊,另個表中中符合條件的資訊,不符合條件的用null補齊 內連線查詢語法 select from 表1 inner join 表2...

SQL SERVER 許可權所有鏈結

markdown 是一種輕量級標記語言,它允許人們使用易讀易寫的純文字格式編寫文件,然後轉換成格式豐富的html頁面。維基百科 使用簡單的符號標識不同的標題,將某些文字標記為粗體或者斜體,建立乙個鏈結等,詳細語法參考幫助?本編輯器支援markdown extra,擴充套件了很多好用的功能。具體請參考...

WinForm鏈結SQLServer資料庫

a window身份 string connstr data source initial catalog 資料庫名 integrated security true b sql身份賬號密碼 string connstr data source initial catalog 資料庫名 user i...