1樓:匿名使用者
1、顯示所有清單,其中:uvoltage,ucapacity可任意修改。
select uvoltage,ucapacity from supply where ucapacity =(你原來的語句)
2、僅顯示一行,相當於excel的分類統計計數select uvoltage,min(ucapacity) from supply where not utype = '家用' and uscapacity> '" & strname & "' group by uvoltage"
2樓:匿名使用者
select min(ucapacity,uvoltage)from supply
where not utype = '家用' and uscapacity> '" & _
strname & "'
3樓:手機使用者
給你做了一個簡單的例子,後面有源**
option explicit
private sub command1_click()dim s1 as string
dim s_id as string
dim s_nam as string
if text1.text = "" thens_id = "%"
else
s_id = text1.text
end if
if text2.text = "" thens_nam = "%"
else
s_nam = text2.text
end if
s1 = "select * from goods where id like '" + s_id + "' and nam like '" + s_nam + "'"
adodc1.recordsource = s1adodc1.refresh
end sub請參考
在vb60中如何申明全域性變數,在VB 6 0中,如何申明一個全域性變數?
在任意模組中用public定義變數,例如public a as integer,使用時可直接寫a,若在其他模組中有與之重名的變數須在變數前宣告模組,比如 form1.a 在 標準模組 的宣告部分,使用關鍵字public或global宣告,可以被工程中的任一窗體,任一模組中的任一過程或函式使用,陣列和...
vb 6 0的陣列問題
dim e 1 to 12 as integerdim f as integer private sub command1 click dim i as integer static j as integer for i 1 to 12 if e i 0 then 使不為零的元素提取出j j 1 r...
vb6 0控制元件 屬性 事件詳細介紹
msdn你可以先看目錄,弄明白那些是vb語言本身的屬性和方法,那些是控制元件的屬性和用法,vb自帶的控制元件有哪些種類。vb語言本身的先學習,控制元件的用到的時候再學習就可以了。經常自己寫點小 來學習。我覺得。需要用某個控制元件的時候在詳細理解記憶最深刻。但是你要大概知道某些常用控制元件有什麼事件方...