刪除A表中在B表中不存在的數據
更新時間:2007年05月11日 00:00:00 作者:
select UserName from TableA where UserName not in (select UserName from TableB where TableA.UserName=TableB.UserName) order by UserName desc
相關文章
ASP中if語句、select 、while循環(huán)的使用方法
這篇文章主要介紹了ASP中if語句、select 、while循環(huán)的使用方法,需要的朋友可以參考下2015-11-11ASP中實現字符部位類似.NET里String對象的PadLeft和PadRight函數
論壇里又有人問起日期怎樣格式化為:2004-08-09 05:02:20這樣的格式:于是寫了一個左(右)對齊的函數.這函數等價于.NET里String對象的PadLeft和PadRight函數2020-04-04