S
Sasan
HI all,
i want to know if it's possible to see the sql script for tables (not
queries) in access. for example i want to know if access is able to show the
following sql script for a specific table (or is there any way to see them in
this format):
create table branch
( branch_id integer not null PRIMARY KEY,
branch_name varchar(20) not null,
branch_addr varchar(50),
branch_city varchar(20) not null,
branch_phone integer );
insert into branch values
( 10, 'Main', '1234 Main St.', 'Vancouver', 5551234 );
insert into branch values
( 20, 'Richmond', '23 No.3 Road', 'Richmond', 5552331 );
insert into branch values
( 30, 'West Creek', '251 Creek Rd.', 'Sechelt', 5552511 );
any answer will be appreciated.
Thanks
sasan
i want to know if it's possible to see the sql script for tables (not
queries) in access. for example i want to know if access is able to show the
following sql script for a specific table (or is there any way to see them in
this format):
create table branch
( branch_id integer not null PRIMARY KEY,
branch_name varchar(20) not null,
branch_addr varchar(50),
branch_city varchar(20) not null,
branch_phone integer );
insert into branch values
( 10, 'Main', '1234 Main St.', 'Vancouver', 5551234 );
insert into branch values
( 20, 'Richmond', '23 No.3 Road', 'Richmond', 5552331 );
insert into branch values
( 30, 'West Creek', '251 Creek Rd.', 'Sechelt', 5552511 );
any answer will be appreciated.
Thanks
sasan