Creating a Table
Using InterBase IBConsole, we will create a very basic table with two columns.`
CREATE TABLE tweets (pkcol int, tweet varchar (255)); INSERT INTO tweets VALUES ( '1', 'hello world'); SELECT * FROM tweets
- The table with the columns and data appear in the SQL dialog.
View and Backup the Database
- Click the drop-down arrow in the SQL dialog to return to IBConsole.
- To view the table properties double-click the table name in the right-hand panel.
- To view the code, click the Metadata tab.
- To view the data, click the Data tab.
- To backup the database, select "twitter_cache"; select Database > Maintenance > Backup / Restore > Backup, and complete the required information in the Database Backup dialog.


