Beginning SQL

Beginning SQL Beginning SQL

marjan.fesb.hr
from marjan.fesb.hr More from this publisher
20.07.2013 Views

Appendix C VALUES ( 5, 3 ); INSERT INTO FavCategory ( CategoryId, MemberId ) VALUES ( 5, 4 ); Films Table 462 The SQL that you use to insert data into the Films table works on all five database systems. One point to note is that the film description for the film 15th Late Afternoon contains the word Shakespeare’’s — the second apostrophe tells the database systems that the first apostrophe isn’t the end of the text. The code to populate the Films table is contained in the download file called FilmsTable_Data.txt. INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD, Rating, CategoryId ) VALUES ( 1, ‘The Dirty Half Dozen’, 1987, ‘Six men go to war wearing unwashed uniforms. The horror!’, ‘N’, 2, 4 ); INSERT INTO Films ( FilmId, FilmName, YearReleased, PlotSummary, AvailableOnDVD,

Appendix C<br />

VALUES<br />

(<br />

5,<br />

3<br />

);<br />

INSERT INTO FavCategory<br />

(<br />

CategoryId,<br />

MemberId<br />

)<br />

VALUES<br />

(<br />

5,<br />

4<br />

);<br />

Films Table<br />

462<br />

The <strong>SQL</strong> that you use to insert data into the Films table works on all five database systems. One point to<br />

note is that the film description for the film 15th Late Afternoon contains the word Shakespeare’’s —<br />

the second apostrophe tells the database systems that the first apostrophe isn’t the end of the text. The<br />

code to populate the Films table is contained in the download file called FilmsTable_Data.txt.<br />

INSERT INTO Films<br />

(<br />

FilmId,<br />

FilmName,<br />

YearReleased,<br />

PlotSummary,<br />

AvailableOnDVD,<br />

Rating,<br />

CategoryId<br />

)<br />

VALUES<br />

(<br />

1,<br />

‘The Dirty Half Dozen’,<br />

1987,<br />

‘Six men go to war wearing unwashed uniforms. The horror!’,<br />

‘N’,<br />

2,<br />

4<br />

);<br />

INSERT INTO Films<br />

(<br />

FilmId,<br />

FilmName,<br />

YearReleased,<br />

PlotSummary,<br />

AvailableOnDVD,

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!