About 21,300,000 results
Open links in new tab
  1. sql - Show column name and data type in Teradata? - Stack Overflow

    Apr 9, 2015 · You can use "SHOW VIEW VIEW_NAME" or "HELP COLUMN VIEW_NAME.*" to get all column names and datatype in the view. Example. HELP COLUMN dbc.Allspace.* …

  2. How do I return the SQL data types from my query?

    Dec 17, 2014 · The first way to check data types for SQL Server database is a query with the SYS schema table. The below query uses COLUMNS and TYPES tables: SELECT C.NAME AS …

  3. How to Get the Type of Columns in SQL - GeeksforGeeks

    Apr 5, 2024 · In this article, we cover retrieving column types in SQL using three methods: SQL's Information Schema, the DESCRIBE statement, and Database GUI Tools. Each method offers …

  4. How to Check a Column’s Data Type in SQL - Database.Guide

    Jan 1, 2022 · Here’s an example of using that view to return column data type information: SELECT COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH AS …

  5. How to get column name and datatype - Microsoft Q&A

    Dec 28, 2023 · This query retrieves the COLUMN_NAME and DATA_TYPE columns from the INFORMATION_SCHEMA.COLUMNS view, filtered by the specified table name. The result …

  6. How to determine the datatypes of the results of a SQL?

    May 5, 2015 · You might use few quick SQL statements to view result column type, by using temp table. Temp tables is a little better then a view, as they are connection-local scope and will be …

  7. user interface, register editors for SQL Assistant, use code completion features, use SQL Reference functions, and database integration options. The described features and how-to …

  8. Setting Answerset Options - Teradata SQL Assistant

    Jan 3, 2020 · Use the following procedure to control the Answerset and the appearance of data in the Answerset by setting options on the Answerset tab of the Options dialog. Additional data …

  9. How to Determine the Data Type of a Column Using SQL

    Jul 23, 2024 · In this tutorial, we’ll explore different ways to determine a column’s data type in various SQL-based systems. We’ll cover methods using the information_schema.columns and …

  10. SQL SERVER – How to Identify Datatypes and Properties of Variable

    Dec 15, 2013 · Pinal: Hmm… well you can do it with the help of SQL_VARIANT_PROPERTY. Let me show you example. Let us see two examples – In the first case our variable is integer. …

  11. Some results have been removed
Refresh