Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
507 views
in Technique[技术] by (71.8m points)

sql - 我应该在T-SQL中使用!=或<>表示不相等吗?(Should I use != or <> for not equal in T-SQL?)

I have seen SQL that uses both != and <> for not equal .

(我见过使用!=<>表示不相等的 SQL 。)

What is the preferred syntax and why?

(首选语法是什么,为什么?)

I like != , because <> reminds me of Visual Basic .

(我喜欢!= ,因为<>我想起了Visual Basic 。)

  ask by Bob The Janitor translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Most databases support != (popular programming languages) and <> (ANSI).

(大多数数据库都支持!= (流行的编程语言)和<> (ANSI)。)

Databases that support both != and <> :

(同时支持!=<> :)

Databases that support the ANSI standard operator, exclusively :

(支持ANSI标准的运营商, 专门数据库:)

  • IBM DB2 UDB 9.5: <>

    (IBM DB2 UDB 9.5: <>)

  • Microsoft Access 2010: <>

    (Microsoft Access 2010: <>)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...