I have a table named Table1
Column Name Data type Max length Precision Scale is_nullable Primary Key
Price float 8 53 0 1 0
Name varchar 180 0 0 1 0
Id_no int 4 10 0 1 1
DOB date 3 10 0 1 0
I need to create another table named Table2where the column rows of a column of table 1 (along with properties such as Data Type, Maximum Length, etc.) should be my columns of another table, for example
Table 2
Price Name Id_No DOB
(Note that when creating a table query, properties must also be considered)
Yoshi source
share