Skip to content

Commit 96ebdf3

Browse files
committed
Fixes Abstract.pod
1 parent d4a35d3 commit 96ebdf3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/CellBIS/SQL/Abstract.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ CellBIS::SQL::Abstract - SQL Query Generator
4545
my $table_list = []; # List of table. (array ref data type)
4646
my $column = []; # List of column to select. (array ref data type)
4747
my $clause = {}; # Clause of SQL Query.
48-
$sql_abstract->select($table_list, $column, $clause);
48+
$sql_abstract->select_join($table_list, $column, $clause);
4949

5050
=head1 DESCRIPTION
5151

@@ -101,7 +101,7 @@ The following are the methods available from this module:
101101
};
102102
$create_table = $sql_abstract->create_table($table_name, $col_list, $col_attr);
103103

104-
This equivalent with :
104+
SQL equivalent :
105105

106106
CREATE TABLE IF NOT EXISTS users(
107107
id INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
@@ -161,7 +161,7 @@ This equivalent with :
161161
};
162162
$create_table = $sql_abstract->create_table($table_name, $col_list, $col_attr, $table_attr);
163163

164-
This equivalent with :
164+
SQL equivalent :
165165

166166
CREATE TABLE IF NOT EXISTS company(
167167
id_company INT(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,

0 commit comments

Comments
 (0)