About 764,000 results
Open links in new tab
  1. CREATE TABLE statement (Microsoft Access SQL)

    Jun 14, 2022 · Use the CREATE TABLE statement to define a new table and its fields and field constraints. If NOT NULL is specified for a field, new records are required to have valid data in that field. A CONSTRAINT clause establishes various restrictions on a field, and can be used to establish the primary key.

  2. How to Create an SQL Table with Microsoft Access | dummies

    Whether you’re working with Access or a full-featured enterprise-level DBMS — like Microsoft SQL Server, Oracle, or IBM DB2 — to create a table with SQL, you must enter the same information that you’d enter if you created the table with a RAD tool.

  3. Create and delete tables and indexes using Access SQL

    Apr 5, 2022 · To build a new table in Access by using Access SQL, you must name the table, name the fields, and define the type of data that the fields will contain. Use the CREATE TABLE statement to define the table in SQL.

  4. Creating a table using SQL In Access - Stack Overflow

    Oct 26, 2014 · CREATE TABLE IceCream ( Flavor TEXT(25) PRIMARY KEY ); CREATE TABLE Sundae ( Name TEXT(25), Flavor TEXT(25), CONSTRAINT PK_Sundae PRIMARY KEY (Name) );

  5. How to Use SQL with Microsoft Access - dummies

    You can write and execute SQL statements in Access, but you have to use a back-door method to do it. To open a basic editor where you can enter SQL code, follow these steps: Open your database and click the CREATE tab.

  6. MS Access and Structured Query Language (SQL)

    In MS Access, you can create a SQL query by either writing the code directly (SELECT field FROM table) or you can use a special interface to help construct the code for you. This special interface method is known as Query-By-Example .

  7. Using SQL Create Command in Microsoft Access - YouTube

    How to Create a Table - Using SQL Create Command in Microsoft Access Join this channel to get access to codes, perks, and see more interesting vid...more.

  8. Create Tables In Access 2010 Using SQL Commands - AddictiveTips

    Mar 26, 2010 · In this post we will define a simple query with SQL commands, which eventually creates a simple table. To start off with, Launch Access 2010 and give database an appropriate name. Once done, click Create.

  9. Create or modify tables or indexes by using a data-definition query

    You can create and modify tables, constraints, indexes and relationships in Access by writing data-definition queries in SQL view. This article explains data-definition queries and how to use them to create tables, constraints, indexes, and relationships.

  10. Microsoft Access Table Management: Create Table, Create Index, Create

    Follow the links under SQL DDL Examples heading to find specific examples of using SQL DDL code to create tables, alter tables, indexes, foreign and primary key. Learn how to manage table design from MS Access or Visual Basic. You can create …

Refresh