-6
我想有在where子句中3列多列,我想要做這樣的事情:獲取在WHERE子句
SELECT ImageID FROM [ImageWithTags] WHERE [email protected], [email protected], [email protected]
我如何獲得上述輸出?
我想爲我的c#應用程序的所有三列,我試過幾種方法,但找不到正確的。
我想有在where子句中3列多列,我想要做這樣的事情:獲取在WHERE子句
SELECT ImageID FROM [ImageWithTags] WHERE [email protected], [email protected], [email protected]
我如何獲得上述輸出?
我想爲我的c#應用程序的所有三列,我試過幾種方法,但找不到正確的。
簡單:
SELECT ImageID FROM [ImageWithTags] WHERE [email protected] OR [email protected] OR [email protected]"
如果你只想滿足所有這些標籤的比列:
SELECT ImageID FROM [ImageWithTags] WHERE [email protected] AND [email protected] AND [email protected]"
SELECT ImageID FROM [ImageWithTags] WHERE [email protected] AND [email protected] AND [email protected]
'Tag1中= @ TAG1並與Tag2 = @與Tag2等。 .'或'Tag1 = @ TAG1或Tag2 = @ TAG2等' –
這是你的c#應用程序或數據庫存儲過程中的代碼嗎?如果你顯示程序中的所有代碼而不僅僅是snippit,可能會有所幫助。 – sarin
我會很驚訝地發現,這不可能通過快速的Google搜索找到。 – mclark1129