Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 993 Bytes

File metadata and controls

28 lines (25 loc) · 993 Bytes
title Table Names | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
helpviewer_keywords
SQL grammar [ODBC], table names
table names [ODBC]
ms.assetid f7a5cb0a-3be7-4f46-82f9-64ffdbceaa9b
author David-Engel
ms.author v-daenge

Table Names

When the dBASE, Microsoft Excel, Paradox, or Text driver is used, table names that occur in the FROM clause of SELECT or DELETE, after the INTO clause in INSERT, and after UPDATE, CREATE TABLE, and DROP TABLE can contain a valid path, primary name, and file name extension.

Use of a table name elsewhere in an SQL statement does not support the use of paths or extensions but will accept only the primary name (for example, EMP FROM C:\ABC\EMP).

Correlation names (aliases) can be used. For example:

SELECT *    
FROM C:\ABC\EMP T1    
WHERE T1.COL1 = 'aaa'