About 29,900 results
Open links in new tab
  1. MySQL :: inull () not working in mysql

    Jun 16, 2009 · select a.rid, a.reqresumeid, ( select stagetitle from hc_stage_status where stagetype=a.stagetype and value= a.stage ) as stagetitle ,isnull ( (case a.statustype when '0' …

  2. MySQL :: Re: Unhandled exception error when installing MYSQL …

    Feb 23, 2024 · Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of …

  3. MySQL :: MySQL ODBC Connector 9.1.0 - Connection Issues in …

    Oct 30, 2024 · I have downloaded/ tried installing the MySQL ODBC Connector Version 9.1.0 from the General Availability Releases page; the installation completes successfully, but when …

  4. MySQL :: error when changing property of the user

    Aug 2, 2016 · Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle …

  5. ISNULL function - MySQL

    Feb 28, 2008 · I have found isnull for MySQL, but it does not work exactly the same way. Any idea to convert that isnull from SQLServer to MySQL? This is how i use in MSSql:- fieldname = …

  6. Incorrect Syntax near the keyword select , Incorrect Syntax near …

    Dec 26, 2019 · When asking SQL questions always share the table schema, data, and complete query. Explain or share the expected results. Lastly format your code before posting. …

  7. Replace NULL Value In Date Field - social.msdn.microsoft.com

    Jul 2, 2014 · I want to replace that NULL value with default date '1/1/1900'.. I tried many ways that are shown below in the query it still shows NULL..

  8. Same query uses different execution plans on two different servers

    Apr 6, 2018 · It uses two totally different execution plans on the old and new servers. The new execution plan doesn't even know the underlining system table sys.sysrowsets for …

  9. reuse select query result - social.msdn.microsoft.com

    Oct 7, 2021 · I have a SQL select query, it works fine as it is now.

  10. Full join and Null values - social.msdn.microsoft.com

    Oct 30, 2010 · SELECT ISNULL (tb1.name,tb2.name2) AS name, sum (tb1.sold ) over () AS total_sold,ISNULL (tb1.type,tb2.type) AS name FROM tb1 FULL JOIN tb2 ON …