You can’t make document modifications more convenient than editing your odt files online. With DocHub, you can access instruments to edit documents in fillable PDF, odt, or other formats: highlight, blackout, or erase document fragments. Include textual content and pictures where you need them, rewrite your copy entirely, and more. You can download your edited record to your device or submit it by email or direct link. You can also convert your documents into fillable forms and invite others to complete them. DocHub even offers an eSignature that allows you to certify and send documents for signing with just a couple of clicks.
Your records are safely stored in our DocHub cloud, so you can access them at any time from your desktop, laptop, smartphone, or tablet. If you prefer to use your mobile device for file editing, you can easily do so with DocHub’s application for iOS or Android.
okay welcome back in this video weamp;#39;re also going to be modifying tables which already exist and weamp;#39;re going to be modifying a columns data type so to modify a columns data type we need to use this sql query here so we type alter table followed by the table name and then we type alter column followed by the column name then we use the word type and then we define the new data type which we want to modify so weamp;#39;re changing changing the data type to this new data type here so letamp;#39;s do that by modifying a columns data type in our examples table so we have the examples table down here and iamp;#39;m going to modify the nationality data type from a varchar 30 to a char three so each country or nationality normally has a three letter abbreviation so for germany it would be g e r for japan it would be jpn so iamp;#39;m going to change the data type from varying from varchar 30 to char with a fixed length of three so to do that i need to type alter table follow