Get Table Names from SQL Server Database
www.tutorialgateway.org › get-table-names-from-sqlAug 23, 2018 · In this SQL example query, we will show you how to Get List of Table names in a database.-- Query to Get SQL Server Database Table Names USE [AdventureWorksDW2014] GO SELECT * FROM INFORMATION_SCHEMA.TABLES. You can also use Where clause along with information_schema tables to restrict the list of table names in SQL Server.-- Query to Get SQL Server Database Table Names USE [AdventureWorksDW2014] GO SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE'
Use the Name Manager in Excel - support.microsoft.com
support.microsoft.com › en-us › officeOn the Formulas tab, in the Defined Names group, click Name Manager. In the Name Manager dialog box, double-click the name you want to edit, or, click the name that you want to change, and then click Edit. In the Edit Name dialog box, in the Name box, type the new name for the reference. In the Refers to box, change the reference, and then click OK.