About 9,240,000 results
Open links in new tab
  1. What is a SQL JOIN, and what are the different types?

    Technically, it returns the result set of a query without WHERE-Clause. As per SQL concern and advancement, there are 3-types of joins and all RDBMS joins can be achieved using these types of …

  2. Difference between numeric, float and decimal in SQL Server

    Jun 29, 2009 · What are the differences between numeric, float and decimal datatypes and which should be used in which situations? For any kind of financial transaction (e.g. for salary field), which one is …

  3. What are the various join types in Spark? - Stack Overflow

    2 Spark data frame support following types of joins between two dataframes. Please find the list of joins and joining string with respect to join types along with scala syntax. We can use following joining …

  4. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    SQL Server and the .NET Framework are based on different type systems. For example, the .NET Framework Decimal structure has a maximum scale of 28, whereas the SQL Server decimal and …

  5. sql - What are the different types of indexes, what are the benefits of ...

    Sep 25, 2008 · What are the different types of indexes, what are the benefits of each? I heard of covering and clustered indexes, are there more? Where would you use them?

  6. SQL Server Text type vs. varchar data type - Stack Overflow

    I have variable length character data and want to store in SQL Server (2005) database. I want to learn some best practices about how to choose TEXT SQL type or choose VARCHAR SQL type, pros and …

  7. Interpreting type codes in sys.objects in SQL Server

    On SQL Server, the sys.objects table includes "Type" and "Type_Desc" attributes. For example, for one of my DBs: SELECT DISTINCT [Type], Type_Desc FROM Sys.Objects ORDER BY [Type] Returns: C

  8. jdbc: Get the SQL Type Name from java.sql.Type code

    To specifically answer "Get the SQL Type Name from java.sql.Type code", if you are using a version of java that can do reflection, here is a small utility method that pretty much does the same thing:

  9. What are the different SQL Server index types? - Stack Overflow

    Jun 30, 2011 · Full-text - A special type of token-based functional index that is built and maintained by the Microsoft Full-Text Engine for SQL Server. It provides efficient support for sophisticated word …

  10. pyspark data type translation to sql server data types on df.write

    Aug 1, 2023 · The specified types should be valid spark sql data types. But how do they translate to sql server types? I could not find a mapping table. For instance, float gets translated to REAL in sql …