Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I need delete column from
SELECT * FROM 36496839_woodensky.skladovekarty00002; ALTER TABLE skladovekarty00002 DROP COLUMN Description
Error Code: 1091. Can't DROP 'Description'; check that column/key exists
DB: MySql 5.1 Workbench Some issue ?
36496839_woodensky
SELECT
USE 36496839_woodensky
ALTER
SELECT * FROM skladovekarty00002
Assuming your current database is not 36496839_woodensky, you will need to include the databasename in your alter table statement. For example:
ALTER TABLE 36496839_woodensky.skladovekarty00002 DROP COLUMN Description
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
36496839_woodenskyin theSELECTstatement. Is it as simple as you not having selected the database withUSE 36496839_woodenskybefore theALTER?SELECT * FROM skladovekarty00002also fail?)