DrupalBin
Submit Code
About
Recent Posts
Fix for Views cumulus: tag_cloud
Fix for Code
sjfgjgjfgidfgh
Code
Code
test.berniecram.com.alias.drushrc.php
Code
provision-deploy error
Create node programmatically with file
Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
Fix for Working NOT EXISTS sql query
View
Fix
April 16, 2009 - 9:05am —
burningdog
#this query now works. It shows me all vehicles which are available on a particular day
SELECT
node
.
nid
AS
nid
,
node
.
title
AS
title
FROM
node
WHERE
(
node
.
STATUS
<>
0
)
AND
(
node
.
type
IN
(
'vehicle'
)
)
AND
NOT
EXISTS
(
SELECT
nid
FROM
content_type_vehicle_booking
WHERE
node
.
nid
=
(
SELECT
content_field_car
.
field_car_nid
AS
nid
FROM
node
LEFT
JOIN
content_field_car
ON
node
.
nid
=
content_field_car
.
nid
LEFT
JOIN
content_field_date
ON
content_field_date
.
nid
=
content_field_car
.
nid
WHERE
(
node
.
STATUS
<>
0
)
AND
(
node
.
type
IN
(
'vehicle_booking'
)
)
AND
(
DATE_FORMAT
(
content_field_date
.
field_date_value
,
'%Y-%m-%d'
)
<=
'2009-04-11'
AND
DATE_FORMAT
(
content_field_date
.
field_date_value2
,
'%Y-%m-%d'
)
>=
'2009-04-11'
)
)
)
mysql
not-exists
sql
Submit Fix
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
#this query now works. It shows me all vehicles which are available on a particular day SELECT node.nid AS nid, node.title as title FROM node WHERE (node.status <> 0) AND (node.type in ('vehicle')) AND NOT EXISTS ( SELECT nid from content_type_vehicle_booking WHERE node.nid = ( SELECT content_field_car.field_car_nid AS nid FROM node LEFT JOIN content_field_car ON node.nid = content_field_car.nid LEFT JOIN content_field_date ON content_field_date.nid = content_field_car.nid WHERE (node.status <> 0) AND (node.type in ('vehicle_booking')) AND (DATE_FORMAT(content_field_date.field_date_value, '%Y-%m-%d') <= '2009-04-11' AND DATE_FORMAT(content_field_date.field_date_value2, '%Y-%m-%d') >= '2009-04-11') ) )
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.