1) Entity types from ER diagrams are converted to tables, with attributes becoming columns and the entity's key becoming the primary key. Multi-valued attributes become separate tables linked by foreign keys.
2) Weak entities become tables with a composite primary key of the strong entity's primary key and the weak entity's key.
3) Relationships are represented by either adding foreign keys between tables or creating a separate table for many-to-many relationships containing foreign keys from the related tables.