Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a table without columns

Can I create a table without any columns in SQL Server by t-sql?

like image 414
loviji Avatar asked Sep 05 '25 05:09

loviji


1 Answers

A table is a collection of columns and rows. You need at least one column.

like image 195
Digital gig Avatar answered Sep 07 '25 19:09

Digital gig