SQL Query To Delete the Top Rows and 1st column

ramon :

Need Help I am trying to write a query to delete the first top row and the whole first column, kindly note that my first row and first column is null and i am struggling to write a query to delete my first null row and first null column

select * from MyTable
Delete 
From MyTable where F1 =1 and F1 =1
Sean Lawton :

You can't delete a column with a DELETE command. You will need to ALTER the table to delete the column.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=375914&siteId=1