Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
13
Task/Literals-String/Prolog/literals-string-6.pro
Normal file
13
Task/Literals-String/Prolog/literals-string-6.pro
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
test_qq_odbc :-
|
||||
myodbc_connect_db(Conn),
|
||||
odbc_query(Conn, {|odbc||
|
||||
select
|
||||
P.image,D.description,D.meta_keywords,C.image,G.description
|
||||
from
|
||||
product P, product_description D, category C, category_description G, product_to_category J
|
||||
where
|
||||
P.product_id=D.product_id and
|
||||
P.product_id=J.product_id and C.category_id=J.category_id and
|
||||
C.category_id=G.category_id
|
||||
|}, Row),
|
||||
writeln(Row).
|
||||
Loading…
Add table
Add a link
Reference in a new issue