About 3,470,000 results
Open links in new tab
  1. How do I get list of all tables in a database using TSQL?

    What is the best way to get the names of all of the tables in a specific database on SQL Server?

  2. Database, Table and Column Naming Conventions? [closed]

    Whenever I design a database, Should table names be plural? Should column names be singular? Should I prefix tables or columns? Should I use any case in naming items? What are recommended …

  3. SQL Naming Conventions: Crafting Clear and Consistent Database Names

    SQL naming conventions are guidelines for naming database objects like tables, columns, schemas, indexes, and constraints. They help standardize names across a database, making it easier to read, …

  4. Table name limitations - Open Database Connectivity (ODBC)

    Jun 25, 2024 · Table names can contain any valid characters (for example, spaces). If table names contain any characters except letters, numbers, and underscores, the name must be delimited by …

  5. sql - A table name as a variable - Stack Overflow

    For static queries, like the one in your question, table names and column names need to be static. For dynamic queries, you should generate the full SQL dynamically, and use sp_executesql to execute it. …

  6. sql - Find all tables containing column with specified name - Stack ...

    Is it possible to query for table names which contain columns being LIKE '%myName%'

  7. Database Naming Standards - DEV Community

    Mar 2, 2021 · As for table names being plural, as mentioned, many experts disagree strongly on this. Joe Celko, world-famous database expert and one of the authors of the SQL-89 and SQL-92 …

  8. Dynamic Table Name Variable in SQL Server - GeeksforGeeks

    Dec 28, 2023 · The dynamic Table Name variable is a good method to handle table names dynamically and offers great flexibility. At the same time using dynamic table name can make the code less …

  9. Should I write table and column names ALWAYS lower case?

    It is not a technical problem for the database to have uppercase letters in your table or column names, for any DB engine that I'm aware of. Keep in mind many DB implementations use case sensitive …

  10. SQL RENAME TABLE - GeeksforGeeks

    Jul 23, 2025 · Renaming a table is a common and useful operation for database administrators and developers. It is especially useful when we need to correct a naming mistake, organize our database …