简体   繁体   中英

ms access, append query

i have 2 tables in ms access 2010. Is posible to make something like:??

I have insert query in first table, and i need to insert some data into second table only if field value in first table in specificed row is == 'specificed value',

I googled, and i found append querys. but i cant create something like that. Can someone help me, is it possible?, is it better to do whole base in mysql?

for example;

insert into table1 (field1,field2,field3) VALUES (1,2,3);
something like trigger-> after insert & if(table1.field2 = 2);
insert into table2 (field1,field2,field3) VALUES (1,2,3 from first table)

i solved half problem with data macro. but now i have combo box with 20 posible checkbox. and i need to do something under condition, if specific combobox is selected.

i tryed next: for example if target checkbox is on first place

if [combobox].Value(0)
if [combobox].Value(1)
if [combobox].Column(0)
if [combobox].Column(1)

[combobox].Column(1) = name of checkbox option

isempty has no sence here,

but i cant test it if checkbox is checked.

ass a matter of a fact, i have combo checkbox. multivalued field.

Here is the solution: Data macros cannot process multi-valued or attachment data-types. From here: http://www.365advisor.com/ArticleContenta14b8953b11bec36

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM