About 1,370,000 results
Open links in new tab
  1. sql - Database - (rows or records, columns or fields ... - Stack Overflow

    Feb 4, 2012 · Fields and columns are different, a field is the intersection of a row and a column. i.e. if your table has 10 rows and 10 columns, it has 100 fields. When you create a table using DDL statements, you define columns (metadata). When you add rows using DML statement s, you define rows and their fields. Is the following information incorrect?

  2. What is the difference between a "record" and a "row" in SQL Server?

    Fields are what you have in user interfaces in client applications, and records are what you have in files and cursors. Tables are logical, and they have logical rows and columns. And, knowing Itzik, if you send him an e-mail or corner him at a conference he will happily tell you the same.

  3. sql server - I still don't understand the exact meanings of fields ...

    Nov 9, 2015 · Fields / Columns represents what kind of data will be stored. while. Records / Rows represents the actual data stored. The table is the collection of columns / fields that holds your data. Example table named person. Name and age are what fields / columns are, while john, peter, michael and ages are what records / rows are.

  4. Column vs Field: have I been using these terms incorrectly?

    In common use, and you can easily verify this by simply doing a bit of googling, Fields and columns are the same thing. PC Databases like DBase, Access and Filemaker typically use "field" instead of "column". "Attribute" is another term that can be used interchangeably.

  5. Specify Field and Row Terminators (SQL Server) - SQL Server

    Mar 30, 2025 · Use the -t switch to specify the field terminator for all the fields except the last field in the row and using the -r switch to specify a row terminator. Use a character-format switch (-c or -w) without the -t switch, which sets the field terminator to …

  6. SQL Terms Beginners Should Know - LearnSQL.com

    Nov 10, 2020 · Here’s a list of 10 absolutely essential SQL terms for beginners. When you start learning SQL, there’s a lot to process. And some of it – even basic SQL terms – gets lost in the shuffle. If this sounds like you, bookmark this article; it will be a handy reference. I’m going to explain these basic SQL terms in the simplest words possible.

  7. Tables - SQL Server | Microsoft Learn

    Feb 4, 2025 · Tables are database objects that contain all the data in a database. In tables, data is logically organized in a row-and-column format similar to a spreadsheet. Each row represents a unique record, and each column represents a field in the record.

  8. sql server - Turning a Comma Separated string into individual rows ...

    Is there a query where I can perform a query like SELECT OtherID, SplitData WHERE SomeID = 'abcdef-.......' that returns individual rows, like this: cdef123-... 4554a24-... Basically split my data at the comma into individual rows?

  9. What are Tables in SQL? Records and Fields Explained - Intellipaat

    Nov 19, 2024 · Tables are the fundamental way to store data in a relational database management system. It contains a header row at the top of the table, which gives the list of column names, followed by rows that contain data. We will discuss the basic operations performed on a database by using important SQL operators.

  10. Table operations in MS SQL Server - GeeksforGeeks

    Sep 17, 2020 · Rows are called records and columns are called fields. In MS SQL Server, the tables are being designated within the database and schema names. The syntax for naming the table –. create table[db_name] [schema_name] table_name col1 datatype,......); Example –. A table with the name student will be created in the database.

  11. Some results have been removed
Refresh