Can I create a table without any columns in SQL Server by t-sql?
相关问题
- Bulk update SQL Server C#
- SQL to Parse a Key-Value String
- keeping one connection to DB or opening closing pe
- Get path of node in tree
- How to evaluate an input in the WHERE clause
相关文章
- How to truncate seconds in TSQL?
- SQL identity (1,1) starting at 0
- Convert column to string in SQL Select
- SQL Group by Count of Counts
- How to generate sequential row number in tsql?
- Sql insert if row does not exist
- Why not “Invalid column name XYZ” error in subquer
- Using Dapper-dot-net, how do I map SQL uniqueident
No. What would you use it for?
A table is a collection of columns and rows. You need at least one column.